mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 14:28:56 +07:00
8 lines
191 B
Python
8 lines
191 B
Python
class Foo(base1, base2, <error descr="This syntax available only since py3">metaclass=mymeta</error>):
|
|
pass
|
|
|
|
class Foo(base1, base2):
|
|
pass
|
|
|
|
def foo(base1, base2, metaclass=mymeta):
|
|
pass |