Skip to content

Commit 90aa759

Browse files
committed
tests: Convert line endings in fun_name.py from CRLF to LF.
1 parent 2941d5c commit 90aa759

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

tests/basics/fun_name.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
def Fun():
2-
pass
3-
4-
class A:
5-
def __init__(self):
6-
pass
7-
def Fun(self):
8-
pass
9-
10-
try:
11-
print(Fun.__name__)
12-
print(A.__init__.__name__)
13-
print(A.Fun.__name__)
14-
print(A().Fun.__name__)
15-
except AttributeError:
16-
print('SKIP')
1+
def Fun():
2+
pass
3+
4+
class A:
5+
def __init__(self):
6+
pass
7+
def Fun(self):
8+
pass
9+
10+
try:
11+
print(Fun.__name__)
12+
print(A.__init__.__name__)
13+
print(A.Fun.__name__)
14+
print(A().Fun.__name__)
15+
except AttributeError:
16+
print('SKIP')

0 commit comments

Comments
 (0)