mirror of
https://github.com/micropython/micropython.git
synced 2024-07-26 18:26:56 +01:00
17 lines
255 B
Python
17 lines
255 B
Python
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')
|