- 30 Eki, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 26 Haz, 2018 1 kayıt (commit)
-
-
Victor Stinner yazdı
This reverts commit 8fbbdf0c.
-
- 22 Haz, 2018 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Add support.MS_WINDOWS: True if Python is running on Microsoft Windows. * Add support.MACOS: True if Python is running on Apple macOS. * Replace support.is_android with support.ANDROID * Replace support.is_jython with support.JYTHON * Cleanup code to initialize unix_shell
-
- 15 May, 2018 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 25 Mar, 2018 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Historically, -m added the empty string as sys.path zero, meaning it resolved imports against the current working directory, the same way -c and the interactive prompt do. This changes the sys.path initialisation to add the *starting* working directory as sys.path[0] instead, such that changes to the working directory while the program is running will have no effect on imports when using the -m switch.
-
- 24 Mar, 2018 1 kayıt (commit)
-
-
Xiang Zhang yazdı
-
- 09 Ara, 2017 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Python now supports checking bytecode cache up-to-dateness with a hash of the source contents rather than volatile source metadata. See the PEP for details. While a fairly straightforward idea, quite a lot of code had to be modified due to the pervasiveness of pyc implementation details in the codebase. Changes in this commit include: - The core changes to importlib to understand how to read, validate, and regenerate hash-based pycs. - Support for generating hash-based pycs in py_compile and compileall. - Modifications to our siphash implementation to support passing a custom key. We then expose it to importlib through _imp. - Updates to all places in the interpreter, standard library, and tests that manually generate or parse pyc files to grok the new format. - Support in the interpreter command line code for long options like --check-hash-based-pycs. - Tests and documentation for all of the above.
-
- 19 Eyl, 2017 1 kayıt (commit)
-
-
Oren Milman yazdı
-
- 29 Agu, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
binding a submodule to a name.
-
- 12 Tem, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
instead of failing with SystemError. Relative import from non-package now fails with ImportError rather than SystemError.
-
- 06 Tem, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 02 Haz, 2017 1 kayıt (commit)
-
-
Segev Finer yazdı
We get `ERROR_BAD_NETPATH` (53) on AppVeyor which is translated to ENOENT (2).
-
- 09 May, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
a submodule to a name are now supported.
-
- 03 Mar, 2017 1 kayıt (commit)
-
-
Anish Shah yazdı
Patch by Anish Shah.
-
- 01 Mar, 2017 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Windows uses backslashes for separators.
-
- 22 Şub, 2017 1 kayıt (commit)
-
-
Matthias Bussonnier yazdı
bpo-29546: Improve from-import error message with location
-
- 15 Şub, 2017 1 kayıt (commit)
-
-
Matthias Bussonnier yazdı
-
- 16 Ara, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 17 Mar, 2016 1 kayıt (commit)
-
-
Ned Deily yazdı
files cannot be written.
-
- 12 Agu, 2015 1 kayıt (commit)
-
-
Brett Cannon yazdı
ImportError if __name__ is not defined on a package. Thanks to Armin Rigo for the bug report and diagnosing the cause.
-
- 06 May, 2015 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Christie Wilson.
-
- 03 May, 2015 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 22 Nis, 2015 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Isaac Schwabacher.
-
- 13 Nis, 2015 1 kayıt (commit)
-
-
Brett Cannon yazdı
The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
-
- 13 Eki, 2014 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-