- 15 Apr, 2012 3 commits
-
-
Brett Cannon authored
__import__('mod', {'__packaging__': 'pkg', level=1) w/o properly (and thus not segfaulting).
-
Brett Cannon authored
-
Brett Cannon authored
Python 3.3 thanks to importlib finishing the work in PEP 328 that accidently got carried forward.
-
- 14 Apr, 2012 15 commits
-
-
Brett Cannon authored
-
Brian Curtin authored
-
Brian Curtin authored
-
Brett Cannon authored
-
Brett Cannon authored
-
Brett Cannon authored
-
Brett Cannon authored
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__().
-
Sandro Tosi authored
-
Sandro Tosi authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
R David Murray authored
-
R David Murray authored
-
- 13 Apr, 2012 18 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Victor Stinner authored
Only use a single #ifdef for the 3 functions.
-
Michael Foord authored
-
Michael Foord authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Michael Foord authored
-
Benjamin Peterson authored
-
Brett Cannon authored
-
Brett Cannon authored
-
Brett Cannon authored
attributes.
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
-
Brett Cannon authored
Currently import does not use these attributes as they are planned for use by importlib (which will be another commit). Thanks to Filip Gruszczyński for the initial patch and Brian Curtin for refining it.
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
With VS8.0 at least Python compiles and works correctly.
-
- 12 Apr, 2012 4 commits
-
-
R David Murray authored
Patch by Serhiy Storchaka. This also moves the TypeError that results from trying to use a unicode comment from the 'close' step to the point at which the comment is added to the zipfile.
-
R David Murray authored
Patch by Serhiy Storchaka. This also moves the TypeError that results from trying to use a unicode comment from the 'close' step to the point at which the comment is added to the zipfile.
-
Victor Stinner authored
-
Georg Brandl authored
-