Jeroen Demeyer
|
530f506ac9
|
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Automatically replace
tp_print -> tp_vectorcall_offset
tp_compare -> tp_as_async
tp_reserved -> tp_as_async
|
2019-05-30 19:13:39 -07:00 |
Zackery Spytz
|
4c49da0cb7
|
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015)
Set MemoryError when appropriate, add missing failure checks,
and fix some potential leaks.
|
2018-12-07 12:11:30 +02:00 |
Alexander Belopolsky
|
f0f45142d5
|
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
va_copy, but available on all python platforms. Untabified a few
unrelated files.
|
2010-08-11 17:31:17 +00:00 |
Mark Dickinson
|
8504d085b7
|
Use size_t instead of int for a PyMem_MALLOC argument; silences a gcc 'comparison always false' warning.
|
2009-10-03 20:13:37 +00:00 |
Benjamin Peterson
|
3e791903ce
|
fix useless comparison #6355
|
2009-06-28 16:23:55 +00:00 |
Benjamin Peterson
|
b173f7853e
|
add a replacement API for PyCObject, PyCapsule #5630
All stdlib modules with C-APIs now use this.
Patch by Larry Hastings
|
2009-05-05 22:31:58 +00:00 |