- 17 Nis, 2012 3 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
conditions when regrtest is run with its -j option.
-
Brett Cannon yazdı
-
- 16 Nis, 2012 26 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Brian Curtin yazdı
-
Brian Curtin yazdı
-
Brian Curtin yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Brett Cannon yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Brian Curtin yazdı
for extension modules on Windows.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
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 yazdı
Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl.
-
Antoine Pitrou yazdı
Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl.
-
Brett Cannon yazdı
-
- 15 Nis, 2012 11 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Victor Stinner yazdı
-
Brett Cannon yazdı
__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 yazdı
-
Brett Cannon yazdı
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 yazdı
-
Brett Cannon yazdı
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 yazdı
-
Brett Cannon yazdı
found in sys.modules.
-