(self)
| 1830 | |
| 1831 | @reraise_if_not_enum(Question) |
| 1832 | def test_pickle_enum_function_with_module(self): |
| 1833 | test_pickle_dump_load(self.assertIs, Question.who) |
| 1834 | test_pickle_dump_load(self.assertIs, Question) |
| 1835 | |
| 1836 | def test_pickle_nested_class(self): |
| 1837 | # would normally just have this directly in the class namespace |
nothing calls this directly
no test coverage detected