(cls, fullname, path=None, target=None)
| 984 | |
| 985 | @classmethod |
| 986 | def find_spec(cls, fullname, path=None, target=None): |
| 987 | if _imp.is_builtin(fullname): |
| 988 | return spec_from_loader(fullname, cls, origin=cls._ORIGIN) |
| 989 | else: |
| 990 | return None |
| 991 | |
| 992 | @staticmethod |
| 993 | def create_module(spec): |
nothing calls this directly
no test coverage detected