tests: Convert line endings in fun_name.py from CRLF to LF.
This commit is contained in:
parent
2941d5c714
commit
90aa7595b4
@ -1,16 +1,16 @@
|
||||
def Fun():
|
||||
pass
|
||||
|
||||
class A:
|
||||
def __init__(self):
|
||||
pass
|
||||
def Fun(self):
|
||||
pass
|
||||
|
||||
try:
|
||||
print(Fun.__name__)
|
||||
print(A.__init__.__name__)
|
||||
print(A.Fun.__name__)
|
||||
print(A().Fun.__name__)
|
||||
except AttributeError:
|
||||
print('SKIP')
|
||||
def Fun():
|
||||
pass
|
||||
|
||||
class A:
|
||||
def __init__(self):
|
||||
pass
|
||||
def Fun(self):
|
||||
pass
|
||||
|
||||
try:
|
||||
print(Fun.__name__)
|
||||
print(A.__init__.__name__)
|
||||
print(A.Fun.__name__)
|
||||
print(A().Fun.__name__)
|
||||
except AttributeError:
|
||||
print('SKIP')
|
||||
|
Loading…
Reference in New Issue
Block a user