Lines Matching refs:MyList
959 y = MyList()
963 self.assertIsInstance(x, MyList)
1040 self.check_recursive_collection_and_inst(MyList)
1257 x = MyList([1, 2, 3])
1305 copy_reg.add_extension(__name__, "MyList", extcode)
1306 x = MyList([1, 2, 3])
1313 self.assertIn("MyList", s1)
1323 self.assertNotIn("MyList", s2)
1666 class MyList(list):
1675 MyTuple, MyList, MyDict]
1678 class SlotList(MyList):