- 08 Jul, 2013 11 commits
-
-
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 29 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
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Modules/posixmodule.c: In function 'posix_sendfile': Modules/posixmodule.c:7700: warning: ISO C90 forbids mixed declarations and code
-
Victor Stinner authored
Replace malloc() with PyMem_Malloc() when the GIL is held, or with PyMem_RawMalloc() otherwise.
-
Victor Stinner authored
* Replace malloc() with PyMem_RawMalloc() * Replace PyMem_Malloc() with PyMem_RawMalloc() where the GIL is not held. * _Py_char2wchar() now returns a buffer allocated by PyMem_RawMalloc(), instead of PyMem_Malloc()
-
Victor Stinner authored
PyMem_Malloc() or PyObject_Malloc(). For example, PyCFunction_Fini() calls PyObject_GC_Del() which calls PyObject_FREE().
-
Raymond Hettinger authored
-
Raymond Hettinger authored
* Add comment explaining the endpoint checks * Only do the checks in a debug build * Simplify newblock() to only require a length argument and leave the link updates to the calling code. * Also add comment for the freelisting logic.
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Florent Xicluna authored
-
Florent Xicluna authored
-
Ezio Melotti authored
-
Ronald Oussoren authored
This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
-
Ronald Oussoren authored
This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
-
Ronald Oussoren authored
Reformulated the textual change, and applied it to the docstring as well.
-
Ronald Oussoren authored
Reformulated the textual change, and applied it to the docstring as well.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Victor Stinner authored
According to VirtualFree() documentation, the size must be zero if the "free type" is MEM_RELEASE.
-