mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
9 lines
96 B
Python
9 lines
96 B
Python
class A(B):
|
|
pass
|
|
class A(object):
|
|
pass
|
|
class A(x.y()):
|
|
pass
|
|
class A(B, C):
|
|
pass
|