(cls, fullname, path=None, target=None)
| 902 | |
| 903 | @classmethod |
| 904 | def find_spec(cls, fullname, path=None, target=None): |
| 905 | if _imp.is_builtin(fullname): |
| 906 | return spec_from_loader(fullname, cls, origin=cls._ORIGIN) |
| 907 | else: |
| 908 | return None |
| 909 | |
| 910 | @staticmethod |
| 911 | def create_module(spec): |
nothing calls this directly
no test coverage detected