- 10 Tem, 2013 5 kayıt (commit)
-
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
Patch by Andrew Rowe.
-
Victor Stinner yazdı
building the tuple (type, value, traceback) passed to the callback. PyTuple_Pack() does crash if an argument is NULL.
-
- 09 Tem, 2013 5 kayıt (commit)
-
-
Charles-François Natali yazdı
addresses.
-
Charles-François Natali yazdı
addresses.
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Raymond Hettinger yazdı
-
- 08 Tem, 2013 21 kayıt (commit)
-
-
Victor Stinner yazdı
in set2list()
-
Victor Stinner yazdı
Don't mark old extra memory dead before calling realloc(). realloc() can fail and realloc() must not touch the original buffer on failure. So mark old extra memory dead only on success if the new buffer did not move (has the same address).
-
Victor Stinner yazdı
cases, so _PyUnicodeWriter_Dealloc() can be called after finish.
-
Victor Stinner yazdı
_PyBytes_Resize(&v, new_size) sets v to NULL on error, so v cannot be used anymore. Replace "Py_DECREF(v); v = NULL;" with "Py_CLEAR(v);".
-
Victor Stinner yazdı
failure.
-
Victor Stinner yazdı
(MemoryError).
-
Victor Stinner yazdı
(MemoryError).
-
Ned Deily yazdı
for a framework install, the python shared library is installed in the frameworkinstallstructure target, not in altbininstall.
-
Victor Stinner yazdı
so _PyUnicodeWriter_Dealloc() can be called on the writer after finish.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
(in load_args()), ex: MemoryError.
-
Victor Stinner yazdı
PyWeakref_NewRef() failure (ex: MemoryError).
-
Victor Stinner yazdı
PyUnicode_DecodeUTF8() failure (ex: MemoryError).
-
Victor Stinner yazdı
-
Victor Stinner yazdı
(MemoryError).
-
Victor Stinner yazdı
is negative
-
Victor Stinner yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 07 Tem, 2013 9 kayıt (commit)
-
-
Victor Stinner yazdı
Replace strdup() with _PyMem_RawStrdup() or _PyMem_Strdup(), depending if the GIL is held or not.
-
Victor Stinner yazdı
-
Christian Heimes yazdı
Issue #18227: pyexpat now uses a static XML_Memory_Handling_Suite. cElementTree uses the same approach since at least Python 2.6
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-