- 29 Oct, 2013 30 commits
-
-
Antoine Pitrou authored
-
Christian Heimes authored
-
Christian Heimes authored
It is causing trouble like e.g. hanging processes.
-
Christian Heimes authored
-
Christian Heimes authored
It is causing trouble like e.g. hanging processes.
-
Victor Stinner authored
failure (memory allocation failure): raise a MemoryError exception
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
attributes before checking for error. The destructor expects all attributes to be set. It is now safe to call Py_DECREF(unicode) in the constructor.
-
Victor Stinner authored
PyTuple_New() failure
-
Victor Stinner authored
-
Victor Stinner authored
PyObject_IsInstance() failure
-
Victor Stinner authored
-
Christian Heimes authored
-
Victor Stinner authored
On AIX, the locale encoding may be "iso8859-1", which was not a known syntax of the legacy ISO 8859-1 encoding. Using a C codec instead of a Python codec is faster but also avoids tricky issues during Python startup or complex code.
-
Victor Stinner authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Victor Stinner authored
_ctypes_alloc_format_string() failure
-
Victor Stinner authored
allocation failure
-
Victor Stinner authored
PyByteArray_FromStringAndSize() failure (ex: on memory allocation failure)
-
Victor Stinner authored
_PyBytes_Resize(&new) sets new to NULL on error, don't call Py_DECREF() with NULL.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
ZIP archive.
-
Victor Stinner authored
memory allocation failure
-
Victor Stinner authored
exceptions when merging fast locals into f_locals of a frame. PyEval_GetLocals() now raises an exception and return NULL on failure.
-
- 28 Oct, 2013 10 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Richard Oudkerk authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Richard Oudkerk authored
-
Nadeem Vawda authored
The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter.
-
Nadeem Vawda authored
The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter.
-