You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
276 B
17 lines
276 B
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')
|
|
raise SystemExit
|
|
|