(self)
| 957 | ]) |
| 958 | |
| 959 | def test_builtin_code(self): |
| 960 | self.assert_roundtrip_equal([ |
| 961 | *(f.__code__ for f in defs.FUNCTIONS), |
| 962 | *(f.__code__ for f in defs.FUNCTION_LIKE), |
| 963 | ]) |
| 964 | |
| 965 | def test_builtin_type(self): |
| 966 | shareable = [ |
nothing calls this directly
no test coverage detected