- 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 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 05 Eki, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 07 Tem, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 22 Kas, 2013 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 08 Kas, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 12 Eki, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 06 Eki, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
Ensure that the module is unloaded to be able to run the test more than once, and to not leak memory.
-
- 29 Eyl, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 26 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
filenames anymore on Windows.
-
- 23 Agu, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 12 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
...`` when an ImportError occurs. Other cases had already been switched over to using the repr. Thanks to Tomasz Maćkowiak for the patch.
-
- 06 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch.
-
- 04 Tem, 2013 2 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 16 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
To make sure there is no issue with code that is both Python 2 and 3 compatible, there are no plans to remove the module any sooner than Python 4 (unless the community moves to Python 3 solidly before then).
-
- 15 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 12 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ImportError. The exception is raised by import when a module could not be found. Technically this is defined as no viable loader could be found for the specified module. This includes ``from ... import`` statements so that the module usage is consistent for all situations where import couldn't find what was requested. This should allow for the common idiom of:: try: import something except ImportError: pass to be updated to using ModuleNotFoundError and not accidentally mask ImportError messages that should propagate (e.g. issues with a loader). This work was driven by the fact that the ``from ... import`` statement needed to be able to tell the difference between an ImportError that simply couldn't find a module (and thus silence the exception so that ceval can raise it) and an ImportError that represented an actual problem.
-
- 07 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
test_imp.
-
- 29 Nis, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867)
-
- 15 Nis, 2013 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 16 Mar, 2013 2 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 24 Ara, 2012 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 19 Eki, 2012 8 kayıt (commit)
-
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
- 25 Eyl, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 31 Agu, 2012 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-