Searched refs:prepare_class (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | types.py | 65 meta, ns, kwds = prepare_class(name, resolved_bases, kwds) 93 def prepare_class(name, bases=(), kwds=None): function
|
/external/python/cpython3/Lib/test/ |
D | test_subclassinit.py | 227 types.prepare_class("MyClass", (object,),
|
D | test_types.py | 928 meta, ns, kwds = types.prepare_class("D", (B, C), {"metaclass": type})
|
/external/python/cpython3/Doc/library/ |
D | types.rst | 41 .. function:: prepare_class(name, bases=(), kwds=None)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2084 The new functions :func:`types.new_class` and :func:`types.prepare_class` provide support
|
/external/python/cpython3/Misc/ |
D | HISTORY | 7561 - Issue #14588: The types module now provide new_class() and prepare_class()
|