(self)
| 858 | MODE = 'marshal' |
| 859 | |
| 860 | def test_simple_builtin_singletons(self): |
| 861 | self.assert_roundtrip_identical([ |
| 862 | True, |
| 863 | False, |
| 864 | None, |
| 865 | Ellipsis, |
| 866 | ]) |
| 867 | self.assert_not_shareable([ |
| 868 | NotImplemented, |
| 869 | ]) |
| 870 | |
| 871 | def test_simple_builtin_objects(self): |
| 872 | self.assert_roundtrip_equal([ |
nothing calls this directly
no test coverage detected