mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
10 lines
130 B
Python
10 lines
130 B
Python
class GenericMeta(type):
|
|
def __getitem__(self, args):
|
|
pass
|
|
|
|
|
|
class Generic(object):
|
|
__metaclass__ = GenericMeta
|
|
|
|
|