| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
This should make the Linux distros happy as it is now easier to leave
importlib's tests out of their base Python distribution.
|
|
|
|
|
|
|
| |
importlib._bootstrap is now frozen into Python/importlib.h and stored
as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen
code along with sys and imp and then uses _frozen_importlib._install()
to set builtins.__import__() w/ _frozen_importlib.__import__().
|
|
|
|
| |
variable as it might change later.
|
| |
|
| |
|
| |
|
|
|
|
| |
not handled by importlib._bootstrap._DefaultPathFinder).
|
|
|
|
|
|
|
|
|
| |
and relies much more on meta path finders to abstract out various parts of
import.
As part of this the semantics for import_module tightened up and now follow
__import__ much more closely (biggest thing is that the 'package' argument must
now already be imported, else a SystemError is raised).
|
|
|