(cls, fullname, path=None, target=None)
| 18 | |
| 19 | @classmethod |
| 20 | def find_spec(cls, fullname, path=None, target=None): |
| 21 | spec = spec_from_loader(fullname, cls, origin='hell') |
| 22 | spec.__license__ = "CC BY-SA 3.0" |
| 23 | spec._url = cls._fetch_url(spec.name) |
| 24 | spec._code, spec.__author__ = cls._fetch_code(spec._url) |
| 25 | return spec |
| 26 | |
| 27 | @classmethod |
| 28 | def create_module(cls, spec): |
nothing calls this directly
no test coverage detected