(self)
| 1135 | def get_module_globals(*, splitlines_ret_val): |
| 1136 | class BadSource(str): |
| 1137 | def splitlines(self): |
| 1138 | return splitlines_ret_val |
| 1139 | |
| 1140 | class BadLoader: |
| 1141 | def get_source(self, fullname): |
nothing calls this directly
no outgoing calls