- 11 Jul, 2013 4 commits
-
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
PyModule_GetDef() returns an error.
-
Christian Heimes authored
PyModule_GetDef() returns an error.
-
- 10 Jul, 2013 6 commits
-
-
R David Murray authored
Also fixes a resource warning that occurred when the fallback is taken. Patch by Serhiy Storchaka. (We couldn't figure out how to write tests for this.)
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
Patch by Andrew Rowe.
-
Victor Stinner authored
building the tuple (type, value, traceback) passed to the callback. PyTuple_Pack() does crash if an argument is NULL.
-
- 09 Jul, 2013 5 commits
-
-
Charles-François Natali authored
addresses.
-
Charles-François Natali authored
addresses.
-
Christian Heimes authored
-
Christian Heimes authored
-
Raymond Hettinger authored
-
- 08 Jul, 2013 21 commits
-
-
Victor Stinner authored
in set2list()
-
Victor Stinner authored
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 authored
cases, so _PyUnicodeWriter_Dealloc() can be called after finish.
-
Victor Stinner authored
_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 authored
failure.
-
Victor Stinner authored
(MemoryError).
-
Victor Stinner authored
(MemoryError).
-
Ned Deily authored
for a framework install, the python shared library is installed in the frameworkinstallstructure target, not in altbininstall.
-
Victor Stinner authored
so _PyUnicodeWriter_Dealloc() can be called on the writer after finish.
-
Victor Stinner authored
-
Victor Stinner authored
(in load_args()), ex: MemoryError.
-
Victor Stinner authored
PyWeakref_NewRef() failure (ex: MemoryError).
-
Victor Stinner authored
PyUnicode_DecodeUTF8() failure (ex: MemoryError).
-
Victor Stinner authored
-
Victor Stinner authored
(MemoryError).
-
Victor Stinner authored
is negative
-
Victor Stinner authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 07 Jul, 2013 4 commits
-
-
Victor Stinner authored
Replace strdup() with _PyMem_RawStrdup() or _PyMem_Strdup(), depending if the GIL is held or not.
-
Victor Stinner authored
-
Christian Heimes authored
Issue #18227: pyexpat now uses a static XML_Memory_Handling_Suite. cElementTree uses the same approach since at least Python 2.6
-
Victor Stinner authored
-