Lines Matching refs:__dict__
239 b for b in builtins.__dict__.keys()
257 b for b in builtins.__dict__.keys()
428 self.assertNotIn('__eq__', C.__dict__)
429 self.assertNotIn('__lt__', C.__dict__)
430 self.assertNotIn('__le__', C.__dict__)
431 self.assertNotIn('__gt__', C.__dict__)
432 self.assertNotIn('__ge__', C.__dict__)
434 self.assertIn('__eq__', C.__dict__)
435 self.assertIn('__lt__', C.__dict__)
436 self.assertIn('__le__', C.__dict__)
437 self.assertIn('__gt__', C.__dict__)
438 self.assertIn('__ge__', C.__dict__)
440 self.assertIn('__eq__', C.__dict__)
441 self.assertNotIn('__lt__', C.__dict__)
442 self.assertNotIn('__le__', C.__dict__)
443 self.assertNotIn('__gt__', C.__dict__)
444 self.assertNotIn('__ge__', C.__dict__)
537 self.assertNotIn('x', C().__dict__)
546 self.assertNotIn('z', C(0).__dict__)
834 self.assertNotIn('x', C.__dict__)
843 self.assertNotIn('x', D.__dict__)
856 self.assertNotIn('x', C.__dict__)
865 self.assertNotIn('x', D.__dict__)
1027 self.assertNotIn('x', C.__dict__)
1038 self.assertNotIn('x', C.__dict__)
1085 self.assertNotIn('x', C.__dict__)
1096 self.assertNotIn('x', C.__dict__)
1756 self.assertNotIn('a', C.__dict__)
1757 self.assertNotIn('b', C.__dict__)
1758 self.assertNotIn('c', C.__dict__)
1759 self.assertIn('d', C.__dict__)
1761 self.assertIn('e', C.__dict__)
1764 self.assertIn('a', c.__dict__)
1766 self.assertIn('b', c.__dict__)
1768 self.assertIn('c', c.__dict__)
1770 self.assertNotIn('d', c.__dict__)
1771 self.assertIn('e', c.__dict__)
1850 self.__dict__.update(kw)
1858 return self.__dict__.__len__()
2331 self.assertNotIn('__le__', C.__dict__)
2332 self.assertNotIn('__lt__', C.__dict__)
2333 self.assertNotIn('__ge__', C.__dict__)
2334 self.assertNotIn('__gt__', C.__dict__)
2343 self.assertNotIn('__le__', C.__dict__)
2344 self.assertNotIn('__ge__', C.__dict__)
2345 self.assertNotIn('__gt__', C.__dict__)
2418 self.assertIn('__hash__', C.__dict__)
2419 self.assertIsNotNone(C.__dict__['__hash__'])
2424 self.assertNotIn('__hash__', C.__dict__)
2428 self.assertIn('__hash__', C.__dict__)
2429 self.assertIsNone(C.__dict__['__hash__'])
2761 self.__dict__['x'] = value * 2
2860 self.assertTrue('__slots__' not in AnotherDelivered.__dict__)
3028 self.assertNotIn('x', C.__dict__)
3129 self.assertIn('not_iv4', c.__dict__)
3134 self.assertNotIn('not_iv4', c.__dict__)
3604 self.assertNotIn('__match_args__', X.__dict__)
3636 self.assertNotIn('__match__args__', C.__dict__)