mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 14:00:54 +07:00
GitOrigin-RevId: 2f6eb873d6321ef00d293377ec2c97195f72da21
8 lines
196 B
Python
8 lines
196 B
Python
class Foo(base1, base2, <error descr="This syntax available only since Python 3">metaclass=mymeta</error>):
|
|
pass
|
|
|
|
class Foo(base1, base2):
|
|
pass
|
|
|
|
def foo(base1, base2, metaclass=mymeta):
|
|
pass |