You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
3cc17c69ff
Disabled by default. Enabled on unix and stmhal ports.
17 lines
271 B
Python
17 lines
271 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')
|