- 16 Tem, 2013 23 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
and ignores exceptions raised during the call
-
Victor Stinner yazdı
Pass the MemoryError exception to the caller, instead of using empty keys.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
As PyDict_GetItem(), PyDict_GetItemString() suppresses all errors that may occur for historical reasons.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
notify exceptions raised by the _PyUnicodeWriter API
-
Victor Stinner yazdı
bytes is NULL on _PyBytes_Resize() failure
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Useed context managers for file I/O. Removed out-of-dated code and misleading comments.
-
Serhiy Storchaka yazdı
Useed context managers for file I/O. Removed out-of-dated code and misleading comments.
-
R David Murray yazdı
-
R David Murray yazdı
Patch by Vajrasky Kok.
-
Richard Oudkerk yazdı
Zachary Ware.)
-
Richard Oudkerk yazdı
Zachary Ware.)
-
Ronald Oussoren yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
- 15 Tem, 2013 17 kayıt (commit)
-
-
Victor Stinner yazdı
_Py_DisplaySourceLine() For example, _PyGC_DumpShutdownStats() calls PyErr_WarnExplicitFormat() while the import machinery does not work anymore, _Py_DisplaySourceLine() fails when trying to import the io module.
-
Victor Stinner yazdı
earlier
-
Victor Stinner yazdı
Report _Py_FindSourceFile() error, so the error is cleared; and clear io.open(filename) exception on failure.
-
Victor Stinner yazdı
Don't pass a NULL traceback to PyException_SetTraceback(): pass Py_None. Passing NULL would raise a new exception.
-
Barry Warsaw yazdı
object's custom `__hash__()` method.
-
Victor Stinner yazdı
failure
-
Victor Stinner yazdı
exception was not raised. Before the process was killed by SIGALRM in another random test (1 second later)
-
Victor Stinner yazdı
on memory allocation failure
-
Victor Stinner yazdı
and _PyUnicode_HAS_WSTR_MEMORY() macros These macros are called in unicode_dealloc(), whereas the unicode object can be "inconsistent" if the creation of the object failed. For example, when unicode_subtype_new() fails on a memory allocation, _PyUnicode_CheckConsistency() fails with an assertion error because data is NULL.
-
R David Murray yazdı
-
Victor Stinner yazdı
if the function called failed whereas no exception was raised, to detect bugs earlier.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Check if XML_ParserCreate_MM() failed (ex: MemoryError) before using self->itself.
-
Barry Warsaw yazdı
object's custom `__hash__()` method.
-
Ronald Oussoren yazdı
The "Gestalt" function on OSX is deprecated (starting with OSX 10.8), remove its usage from the stdlib. The patch removes a number of private functions and a private module, but does not change the public API. The removed code was effectively dead, the platform module has used other code to fetch the OSX version for years and could only use on the Gestalt-based code as a fallback. That fallback can only trigger on broken OSX installs (that is, someone has removed parts of the system install)
-
R David Murray yazdı
-
Richard Oudkerk yazdı
-