Searched refs:BNotMeta (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_types.py | 1062 class BNotMeta(ANotMeta): class 1078 B = types.new_class("B", (), {"metaclass": BNotMeta}) 1079 self.assertIs(BNotMeta, type(B)) 1086 self.assertIs(BNotMeta, type(C)) 1093 self.assertIs(BNotMeta, type(C2)) 1105 self.assertIs(BNotMeta, type(E)) 1112 self.assertIs(BNotMeta, type(F)) 1119 self.assertIs(BNotMeta, type(F2))
|
D | test_descr.py | 725 class BNotMeta(ANotMeta): class 742 class B(metaclass=BNotMeta): 744 self.assertIs(BNotMeta, type(B)) 752 self.assertIs(BNotMeta, type(C)) 760 self.assertIs(BNotMeta, type(C2)) 774 self.assertIs(BNotMeta, type(E)) 782 self.assertIs(BNotMeta, type(F)) 790 self.assertIs(BNotMeta, type(F2))
|