- 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.
-
- 05 Haz, 2013 1 kayıt (commit)
-
-
Richard Oudkerk yazdı
-
- 04 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
by their HANDLE which is a pointer (and not a long, which is smaller).
-
- 25 May, 2013 1 kayıt (commit)
-
-
Eli Bendersky yazdı
This affects pyexpat and _elementtree. PyExpat_CAPI now exposes a new function - DefaultUnknownEncodingHandler. Based on a patch by Serhiy Storchaka.
-
- 22 May, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
an internal XML encoding is UTF-8 or US-ASCII.
-
- 29 May, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
PyObject_CallMethod() now changed to `const char*`. Based on patches by Jörg Müller and Lars Buitinck.
-
- 27 May, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
A patch from Illia Polosukhin.
-
- 18 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 16 May, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 15 May, 2013 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
- 14 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
(Issue #17807: Generators can now be finalized even when they are part of a reference cycle)
-
- 13 May, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 12 May, 2013 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 08 May, 2013 3 kayıt (commit)
-
-
Charles-Francois Natali yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
(should fix Windows buildbot failures on test_gc)
-
- 06 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 05 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Note that this is a potentially disruptive change since it may release some system resources which would otherwise remain perpetually alive (e.g. database connections kept in thread-local storage).
-
- 04 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again.
-
- 02 May, 2013 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
-
- 30 Nis, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 18 Nis, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 17 Nis, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Add also min_char attribute to _PyUnicodeWriter structure (currently unused) * _PyUnicodeWriter_Init() has no more argument (except the writer itself): min_length and overallocate must be set explicitly * In error handlers, only enable overallocation if the replacement string is longer than 1 character * CJK decoders don't use overallocation anymore * Set min_length, instead of preallocating memory using _PyUnicodeWriter_Prepare(), in many decoders * _PyUnicode_DecodeUnicodeInternal() checks for integer overflow
-
- 11 Nis, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
the legacy Py_UNICODE API. Add also a new _PyUnicodeWriter_WriteChar() function.
-
- 06 Nis, 2013 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 02 Nis, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
Write a function to enable more optimizations: * If the substring is the whole string and overallocation is disabled, just keep a reference to the string, don't copy characters * Avoid a call to the expensive _PyUnicode_FindMaxChar() function when possible
-
- 23 Mar, 2013 5 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Kristján Valur Jónsson yazdı
-
- 20 Mar, 2013 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
in marshal
-
- 19 Mar, 2013 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
when it needs support from timemodule (which is a .so on linux): link in timemodule.c for the required functions.
-
- 18 Mar, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch from Sven Brauch.
-
- 13 Mar, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 11 Mar, 2013 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
as reported by Serhiy Storchaka and Matthew Barnett.
-
- 08 Mar, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch by Stefan Behnel and I.
-