Mercurial > repos > rliterman > csp2
comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/lib/python3.8/importlib/machinery.py @ 69:33d812a61356
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 17:55:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
67:0e9998148a16 | 69:33d812a61356 |
---|---|
1 """The machinery of importlib: finders, loaders, hooks, etc.""" | |
2 | |
3 import _imp | |
4 | |
5 from ._bootstrap import ModuleSpec | |
6 from ._bootstrap import BuiltinImporter | |
7 from ._bootstrap import FrozenImporter | |
8 from ._bootstrap_external import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES, | |
9 OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES, | |
10 EXTENSION_SUFFIXES) | |
11 from ._bootstrap_external import WindowsRegistryFinder | |
12 from ._bootstrap_external import PathFinder | |
13 from ._bootstrap_external import FileFinder | |
14 from ._bootstrap_external import SourceFileLoader | |
15 from ._bootstrap_external import SourcelessFileLoader | |
16 from ._bootstrap_external import ExtensionFileLoader | |
17 | |
18 | |
19 def all_suffixes(): | |
20 """Returns a list of all recognized module suffixes for this process""" | |
21 return SOURCE_SUFFIXES + BYTECODE_SUFFIXES + EXTENSION_SUFFIXES |