| 4791 | |
| 4792 | # For test_bad_newobj_class and test_bad_newobj_ex__class |
| 4793 | class NoNew: |
| 4794 | def __getattribute__(self, name): |
| 4795 | if name == '__new__': |
| 4796 | raise AttributeError |
| 4797 | return super().__getattribute__(name) |
| 4798 | |
| 4799 | |
| 4800 | class AbstractPickleModuleTests: |
no outgoing calls
searching dependent graphs…