- 16 Apr, 2012 10 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Brian Curtin authored
for extension modules on Windows.
-
Brett Cannon authored
-
Brett Cannon authored
Thanks to Eric Snow for helping with imp.load_module() (previous commit) which led to the removal of a bunch of C code.
-
Antoine Pitrou authored
Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl.
-
Antoine Pitrou authored
Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl.
-
Brett Cannon authored
-
- 15 Apr, 2012 25 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
-
Brett Cannon authored
-
Victor Stinner authored
-
Brett Cannon authored
__loader__. Since import now sets __loader__ on all modules it creates and imp.reload() already relied on the attribute for modules that import didn't create, the only potential compatibility issue is if people were deleting the attribute on modules and expecting imp.reload() to continue to work.
-
Brett Cannon authored
-
Brett Cannon authored
rewriting functionality in pure Python. To start, imp.new_module() has been rewritten in pure Python, put into importlib (privately) and then publicly exposed in imp.
-
Brett Cannon authored
-
Brett Cannon authored
of sys.modules when possible. This is being done for two reasons. One is to gain a little bit of performance by skipping an unnecessary dict lookup in sys.modules. But the other (and main) reason is to be a little bit more clear in how things should work from the perspective of import's interactions with loaders. Otherwise loaders can easily forget to return the module even though PEP 302 explicitly states they are expected to return the module they loaded.
-
Philip Jenvey authored
-
Brett Cannon authored
found in sys.modules.
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Mark Dickinson authored
Issue #13889: On MSVC builds, set FPU control word at runtime for all string <-> float conversions. Patch by Samuel Iseli and Stefan Krah.
-
Kristján Valur Jónsson authored
-
Kristján Valur Jónsson authored
-
Kristján Valur Jónsson authored
_socket does. Some were using the older wsock32.lib.
-
Ross Lagerwall authored
-
Ross Lagerwall authored
-
Brett Cannon authored
-
Brett Cannon authored
PEP 328 in explaining how 'index' works.
-
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 5 commits
-
-
Brett Cannon authored
-
Brian Curtin authored
-
Brian Curtin authored
-
Brett Cannon authored
-
Brett Cannon authored
-