Searched refs:BNotMeta (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_types.py | 1091 class BNotMeta(ANotMeta): class 1107 B = types.new_class("B", (), {"metaclass": BNotMeta}) 1108 self.assertIs(BNotMeta, type(B)) 1115 self.assertIs(BNotMeta, type(C)) 1122 self.assertIs(BNotMeta, type(C2)) 1134 self.assertIs(BNotMeta, type(E)) 1141 self.assertIs(BNotMeta, type(F)) 1148 self.assertIs(BNotMeta, type(F2))
|
D | test_descr.py | 734 class BNotMeta(ANotMeta): class 751 class B(metaclass=BNotMeta): 753 self.assertIs(BNotMeta, type(B)) 761 self.assertIs(BNotMeta, type(C)) 769 self.assertIs(BNotMeta, type(C2)) 783 self.assertIs(BNotMeta, type(E)) 791 self.assertIs(BNotMeta, type(F)) 799 self.assertIs(BNotMeta, type(F2))
|