micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# test __name__ on generator functions
|
||||
|
||||
def Fun():
|
||||
yield
|
||||
|
||||
class A:
|
||||
def Fun(self):
|
||||
yield
|
||||
|
||||
try:
|
||||
print(Fun.__name__)
|
||||
print(A.Fun.__name__)
|
||||
print(A().Fun.__name__)
|
||||
except AttributeError:
|
||||
print('SKIP')
|
||||
raise SystemExit
|
Reference in New Issue
Block a user