(self, path=None)
| 203 | """ |
| 204 | |
| 205 | def __init__(self, path=None): |
| 206 | global imp |
| 207 | warnings.warn("This emulation is deprecated and slated for removal " |
| 208 | "in Python 3.12; use 'importlib' instead", |
| 209 | DeprecationWarning) |
| 210 | _import_imp() |
| 211 | self.path = path |
| 212 | |
| 213 | def find_module(self, fullname, path=None): |
| 214 | # Note: we ignore 'path' argument since it is only used via meta_path |
nothing calls this directly
no test coverage detected