Skip to content

Commit d6edace

Browse files
committed
fixed line endings in intern_.cs
1 parent d7d5cb7 commit d6edace

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/runtime/intern_.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,39 @@ namespace Python.Runtime
44
{
55
static class PyIdentifier
66
{
7-
static IntPtr f__name__;
7+
static IntPtr f__name__;
88
public static BorrowedReference __name__ => new(f__name__);
9-
static IntPtr f__dict__;
9+
static IntPtr f__dict__;
1010
public static BorrowedReference __dict__ => new(f__dict__);
11-
static IntPtr f__doc__;
11+
static IntPtr f__doc__;
1212
public static BorrowedReference __doc__ => new(f__doc__);
13-
static IntPtr f__class__;
14-
public static BorrowedReference __class__ => new(f__class__);
15-
static IntPtr f__clear_reentry_guard__;
16-
public static BorrowedReference __clear_reentry_guard__ => new(f__clear_reentry_guard__);
17-
static IntPtr f__module__;
13+
static IntPtr f__class__;
14+
public static BorrowedReference __class__ => new(f__class__);
15+
static IntPtr f__clear_reentry_guard__;
16+
public static BorrowedReference __clear_reentry_guard__ => new(f__clear_reentry_guard__);
17+
static IntPtr f__module__;
1818
public static BorrowedReference __module__ => new(f__module__);
19-
static IntPtr f__file__;
19+
static IntPtr f__file__;
2020
public static BorrowedReference __file__ => new(f__file__);
21-
static IntPtr f__slots__;
21+
static IntPtr f__slots__;
2222
public static BorrowedReference __slots__ => new(f__slots__);
23-
static IntPtr f__self__;
23+
static IntPtr f__self__;
2424
public static BorrowedReference __self__ => new(f__self__);
25-
static IntPtr f__annotations__;
25+
static IntPtr f__annotations__;
2626
public static BorrowedReference __annotations__ => new(f__annotations__);
27-
static IntPtr f__init__;
27+
static IntPtr f__init__;
2828
public static BorrowedReference __init__ => new(f__init__);
29-
static IntPtr f__repr__;
29+
static IntPtr f__repr__;
3030
public static BorrowedReference __repr__ => new(f__repr__);
31-
static IntPtr f__import__;
31+
static IntPtr f__import__;
3232
public static BorrowedReference __import__ => new(f__import__);
33-
static IntPtr f__builtins__;
33+
static IntPtr f__builtins__;
3434
public static BorrowedReference __builtins__ => new(f__builtins__);
35-
static IntPtr fbuiltins;
35+
static IntPtr fbuiltins;
3636
public static BorrowedReference builtins => new(fbuiltins);
37-
static IntPtr f__overloads__;
37+
static IntPtr f__overloads__;
3838
public static BorrowedReference __overloads__ => new(f__overloads__);
39-
static IntPtr fOverloads;
39+
static IntPtr fOverloads;
4040
public static BorrowedReference Overloads => new(fOverloads);
4141
}
4242

@@ -48,7 +48,7 @@ static partial class InternString
4848
"__name__",
4949
"__dict__",
5050
"__doc__",
51-
"__class__",
51+
"__class__",
5252
"__clear_reentry_guard__",
5353
"__module__",
5454
"__file__",

0 commit comments

Comments
 (0)