Lines Matching refs:__dict__
268 b for b in builtins.__dict__.keys()
286 b for b in builtins.__dict__.keys()
457 self.assertNotIn('__eq__', C.__dict__)
458 self.assertNotIn('__lt__', C.__dict__)
459 self.assertNotIn('__le__', C.__dict__)
460 self.assertNotIn('__gt__', C.__dict__)
461 self.assertNotIn('__ge__', C.__dict__)
463 self.assertIn('__eq__', C.__dict__)
464 self.assertIn('__lt__', C.__dict__)
465 self.assertIn('__le__', C.__dict__)
466 self.assertIn('__gt__', C.__dict__)
467 self.assertIn('__ge__', C.__dict__)
469 self.assertIn('__eq__', C.__dict__)
470 self.assertNotIn('__lt__', C.__dict__)
471 self.assertNotIn('__le__', C.__dict__)
472 self.assertNotIn('__gt__', C.__dict__)
473 self.assertNotIn('__ge__', C.__dict__)
592 self.assertNotIn('x', C().__dict__)
601 self.assertNotIn('z', C(0).__dict__)
889 self.assertNotIn('x', C.__dict__)
898 self.assertNotIn('x', D.__dict__)
911 self.assertNotIn('x', C.__dict__)
920 self.assertNotIn('x', D.__dict__)
1141 self.assertNotIn('x', C.__dict__)
1152 self.assertNotIn('x', C.__dict__)
1199 self.assertNotIn('x', C.__dict__)
1210 self.assertNotIn('x', C.__dict__)
1880 self.assertNotIn('a', C.__dict__)
1881 self.assertNotIn('b', C.__dict__)
1882 self.assertNotIn('c', C.__dict__)
1883 self.assertIn('d', C.__dict__)
1885 self.assertIn('e', C.__dict__)
1888 self.assertIn('a', c.__dict__)
1890 self.assertIn('b', c.__dict__)
1892 self.assertIn('c', c.__dict__)
1894 self.assertNotIn('d', c.__dict__)
1895 self.assertIn('e', c.__dict__)
1974 self.__dict__.update(kw)
1982 return self.__dict__.__len__()
2468 self.assertNotIn('__le__', C.__dict__)
2469 self.assertNotIn('__lt__', C.__dict__)
2470 self.assertNotIn('__ge__', C.__dict__)
2471 self.assertNotIn('__gt__', C.__dict__)
2480 self.assertNotIn('__le__', C.__dict__)
2481 self.assertNotIn('__ge__', C.__dict__)
2482 self.assertNotIn('__gt__', C.__dict__)
2555 self.assertIn('__hash__', C.__dict__)
2556 self.assertIsNotNone(C.__dict__['__hash__'])
2561 self.assertNotIn('__hash__', C.__dict__)
2565 self.assertIn('__hash__', C.__dict__)
2566 self.assertIsNone(C.__dict__['__hash__'])
2898 self.__dict__['x'] = value * 2
3016 self.assertNotIn('__slots__', AnotherDerived.__dict__)
3503 self.assertNotIn('x', C.__dict__)
3604 self.assertIn('not_iv4', c.__dict__)
3609 self.assertNotIn('not_iv4', c.__dict__)
4079 self.assertNotIn('__match_args__', X.__dict__)
4111 self.assertNotIn('__match__args__', C.__dict__)