get_code(fullname) -> code object. Return the code object for the specified module. Raise ZipImportError if the module couldn't be imported.
(self, fullname)
| 187 | return None |
| 188 | |
| 189 | def get_code(self, fullname): |
| 190 | """get_code(fullname) -> code object. |
| 191 | |
| 192 | Return the code object for the specified module. Raise ZipImportError |
| 193 | if the module couldn't be imported. |
| 194 | """ |
| 195 | code, ispackage, modpath = _get_module_code(self, fullname) |
| 196 | return code |
| 197 | |
| 198 | |
| 199 | def get_data(self, pathname): |
nothing calls this directly
no test coverage detected