summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapimodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue 4474: On platforms with sizeof(wchar_t) == 4 andMark Dickinson2009-03-181-0/+43
* Issue 4293: Make Py_AddPendingCall() thread safeKristján Valur Jónsson2009-01-091-0/+38
* Just inserted blank line.Hirokazu Yamamoto2008-12-311-0/+1
* Fixed compile error on windows.Hirokazu Yamamoto2008-12-311-1/+2
* Issue #4701: implicitly call PyType_Ready from PyObject_HashNick Coghlan2008-12-301-0/+101
* make global staticBenjamin Peterson2008-12-231-1/+1
* use a global variable, so the compiler doesn't optimize the assignment outBenjamin Peterson2008-12-231-2/+3
* silence compiler warningBenjamin Peterson2008-12-221-0/+1
* fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|'Benjamin Peterson2008-12-221-0/+27
* #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module:Amaury Forgeot d'Arc2008-10-141-0/+4
* #3643 add a few more checks to _testcapi to prevent segfaultsBenjamin Peterson2008-08-231-4/+20
* Added garbage collector overhead and optional default return value toRobert Schuppenies2008-07-101-0/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-3/+3
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Rename the test_traceback_print() function to traceback_print() to preventBrett Cannon2008-04-281-3/+3
* Fix a bug introduced by the warnings rewrite where tracebacks were beingBrett Cannon2008-04-281-0/+19
* Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...Christian Heimes2008-02-261-0/+18
* Reformat some ugly code.Georg Brandl2008-01-211-26/+39
* Patch #1720595: add T_BOOL to the range of structmember types.Georg Brandl2008-01-211-2/+5
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Patch #1733960: Allow T_LONGLONG to accept ints.Martin v. Löwis2007-06-091-3/+27
* Fix crash in test on HP-UX. Apparently, it's not possible to delete a lock ifNeal Norwitz2006-10-281-0/+3
* Get DBL_MAX from float.h not values.h. Will backport.Martin v. Löwis2006-10-271-3/+1
* Check for values.h. Will backport.Martin v. Löwis2006-10-271-0/+2
* Patch #1549049: Rewrite type conversion in structmember.Martin v. Löwis2006-10-271-8/+121
* Change fix for segfaulting property(), add a NEWS entry and a test.Georg Brandl2006-08-041-0/+9
* Part of bug #1523610: fix miscalculation of buffer length.Georg Brandl2006-07-261-0/+11
* Remove lie in new comment.Tim Peters2006-05-131-3/+1
* Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatVTim Peters2006-05-131-4/+43
* correct function signatureSkip Montanaro2006-04-181-1/+1
* Add a test for Py_ssize_t. Correct typo in getargs.c.Georg Brandl2006-04-131-11/+21
* Add PY_SSIZE_T_MIN/MAX to _testcapi.Georg Brandl2006-04-131-0/+2
* Fix some warnings on HP-UX when using cc/aCCNeal Norwitz2006-04-101-2/+2
* Try to repair at least one segfault on the Mac buildbot,Tim Peters2006-03-211-12/+42
* Add tests for the C APIs PyCodec_IncrementalEncoder() andWalter Dörwald2006-03-181-0/+24
* Move test code out of xxmodule and into _testcapimodule.c where it belongs.Neal Norwitz2006-03-151-0/+13
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix silly leak in test used in test_exceptions.Michael W. Hudson2003-08-151-0/+1
* New support functions for test_getargs2.Thomas Heller2003-04-241-69/+70
* Get test_capi & test_getargs2 to pass on alphasNeal Norwitz2003-04-221-6/+19
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-191-0/+47
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-171-0/+149
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-5/+5
* _PyLong_NumBits(): The definition of this was too specific to the quirkyTim Peters2003-01-311-21/+27
* Added new private API function _PyLong_NumBits. This will be used at theTim Peters2003-01-281-2/+39
* Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." linkMark Hammond2002-07-231-1/+1
* Switch to using METH_NOARGS where possible.Fred Drake2002-04-011-38/+18
* Fixed "u#" parser marker to pass through Unicode objects as-is withoutMarc-André Lemburg2002-01-091-0/+50