(self)
| 94 | dst.__code__ = prev |
| 95 | |
| 96 | def test___globals__(self): |
| 97 | self.assertIs(self.b.__globals__, globals()) |
| 98 | self.cannot_set_attr(self.b, '__globals__', 2, |
| 99 | (AttributeError, TypeError)) |
| 100 | |
| 101 | def test___builtins__(self): |
| 102 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected