Return a dict for the globals.
(self, d)
| 880 | return cls.from_code(self, self.compile(source), globals, None) |
| 881 | |
| 882 | def make_globals(self, d): |
| 883 | """Return a dict for the globals.""" |
| 884 | if not d: |
| 885 | return self.globals |
| 886 | return dict(self.globals, **d) |
| 887 | |
| 888 | |
| 889 | class Template(object): |
no outgoing calls
no test coverage detected