1. d2aff60 [2.7] bpo-30283: Backport test_regrtest from master to 2.7 (#1513) by Victor Stinner · 8 years ago
  2. 888a29f fix _testcapi to work when statically linked into python by Benjamin Peterson · 9 years ago
  3. 12cf60c Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 9 years ago
  4. d0dc72b Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codes by Serhiy Storchaka · 9 years ago
  5. c6a7c96 Backported tests for issue #18531. by Serhiy Storchaka · 9 years ago
  6. 4b40c3e Fixed a crash in new tests in test_getargs2 added in 60a2d67dacb3 (issue #26198). by Serhiy Storchaka · 10 years ago
  7. 3ecb6ab Issue #26198: Added tests for string-related format units of PyArg_Parse*() by Serhiy Storchaka · 10 years ago
  8. 0d2fac1 Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). by Antoine Pitrou · 10 years ago
  9. 4068b01 Issue #23392: Added tests for marshal C API that works with FILE*. by Serhiy Storchaka · 11 years ago
  10. 0a7fc53 Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 11 years ago
  11. 5606cd9 Issue #23349: Fix off-by-one error in PyBuffer_ToContiguous(). Initial patch by Stefan Krah · 11 years ago
  12. 66c6e9d Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 12 years ago
  13. e822b03 Issue #15866: The xmlcharrefreplace error handler no more produces two XML by Serhiy Storchaka · 12 years ago
  14. 1e18102 Issue #17928: Fix test_structmembers on 64-bit big-endian machines. by Antoine Pitrou · 12 years ago
  15. 9f915d9 Issue #13093: Fix _testcapi.unicode_encodedecimal() by Victor Stinner · 14 years ago
  16. 975134e Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 14 years ago
  17. a7b0976 PyEval_CallObject requires a tuple of args (closes #13186) by Benjamin Peterson · 14 years ago
  18. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  19. b05dc00 Fix a couple of issues with the test_structmembersType class in _testcapimodule by Mark Dickinson · 15 years ago
  20. 1c7c11e give TypeError when trying to set T_STRING_INPLACE by Benjamin Peterson · 15 years ago
  21. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  22. 526e421 Issue #7385: Fix a crash in `MemoryView_FromObject` when by Antoine Pitrou · 16 years ago
  23. 46bff79 be robust against test being run over and over (such as -R) by Benjamin Peterson · 16 years ago
  24. a04ae01 move test outside WITH_THREAD section by Benjamin Peterson · 16 years ago
  25. a36507c Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a by Mark Dickinson · 16 years ago
  26. 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 16 years ago
  27. bd335bf Additional edge-case tests for test_long_and_overflow. by Mark Dickinson · 16 years ago
  28. ed02b3f Fix reference counts for test_long_and_overflow. by Mark Dickinson · 16 years ago
  29. e31d300 Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. by Mark Dickinson · 16 years ago
  30. b5e348b Add missing tests for PyArg_Parse* with format 'h' by Mark Dickinson · 16 years ago
  31. 001e4a6 add a test of loading the datetime capi by Benjamin Peterson · 16 years ago
  32. 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 16 years ago
  33. 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 16 years ago
  34. c6c1f96 tabify :( by Benjamin Peterson · 16 years ago
  35. a98c8e1 fix running test_capi with -R :: by Benjamin Peterson · 16 years ago
  36. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 16 years ago
  37. 0e2d8c3 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 17 years ago
  38. 3cda1db Just inserted blank line. by Hirokazu Yamamoto · 17 years ago
  39. 52c1e3c Fixed compile error on windows. by Hirokazu Yamamoto · 17 years ago
  40. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
  41. e098c4a make global static by Benjamin Peterson · 17 years ago
  42. b6a53b5 use a global variable, so the compiler doesn't optimize the assignment out by Benjamin Peterson · 17 years ago
  43. 5423abd silence compiler warning by Benjamin Peterson · 17 years ago
  44. 4caef5c fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|' by Benjamin Peterson · 17 years ago
  45. 07d539d #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module: by Amaury Forgeot d'Arc · 17 years ago
  46. 37346b2 #3643 add a few more checks to _testcapi to prevent segfaults by Benjamin Peterson · 17 years ago
  47. 4762902 Added garbage collector overhead and optional default return value to by Robert Schuppenies · 17 years ago
  48. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  49. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  50. 8dc4303 Rename the test_traceback_print() function to traceback_print() to prevent by Brett Cannon · 17 years ago
  51. 141534e Fix a bug introduced by the warnings rewrite where tracebacks were being by Brett Cannon · 17 years ago
  52. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
  53. c09b94e Reformat some ugly code. by Georg Brandl · 18 years ago
  54. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 18 years ago
  55. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  56. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  57. 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 18 years ago
  58. 97a5722 Fix crash in test on HP-UX. Apparently, it's not possible to delete a lock if by Neal Norwitz · 19 years ago
  59. 0347a9a Get DBL_MAX from float.h not values.h. Will backport. by Martin v. Löwis · 19 years ago
  60. 443ccc7 Check for values.h. Will backport. by Martin v. Löwis · 19 years ago
  61. b5bc537 Patch #1549049: Rewrite type conversion in structmember. by Martin v. Löwis · 19 years ago
  62. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 19 years ago
  63. 5f13578 Part of bug #1523610: fix miscalculation of buffer length. by Georg Brandl · 19 years ago
  64. 375f06b Remove lie in new comment. by Tim Peters · 19 years ago
  65. 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 19 years ago
  66. 9582c14 correct function signature by Skip Montanaro · 19 years ago
  67. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 19 years ago
  68. 635af32 Add PY_SSIZE_T_MIN/MAX to _testcapi. by Georg Brandl · 19 years ago
  69. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 19 years ago
  70. 59b96c1 Try to repair at least one segfault on the Mac buildbot, by Tim Peters · 19 years ago
  71. 9ae019b Add tests for the C APIs PyCodec_IncrementalEncoder() and by Walter Dörwald · 19 years ago
  72. 4a53dad Move test code out of xxmodule and into _testcapimodule.c where it belongs. by Neal Norwitz · 19 years ago
  73. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  74. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  75. f02bcee Fix silly leak in test used in test_exceptions. by Michael W. Hudson · 22 years ago
  76. 3457e4b New support functions for test_getargs2. by Thomas Heller · 22 years ago
  77. 699cbb7 Get test_capi & test_getargs2 to pass on alphas by Neal Norwitz · 22 years ago
  78. 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 22 years ago
  79. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
  80. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 22 years ago
  81. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 23 years ago
  82. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 23 years ago
  83. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 23 years ago
  84. acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 23 years ago
  85. 3e3eacb Fixed "u#" parser marker to pass through Unicode objects as-is without by Marc-André Lemburg · 24 years ago
  86. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 24 years ago
  87. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 24 years ago
  88. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 24 years ago
  89. ede049b Add tests for new PyErr_NormalizeException() behavior by Jeremy Hylton · 24 years ago
  90. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 24 years ago
  91. 208efe5 Windows build broke from recent Unicode changes -- need to #define by Tim Peters · 24 years ago
  92. 83c9edc Fix error in comment, and in test_long_api and test_longlong_api remove by Tim Peters · 24 years ago
  93. ff70d3c Fixed typo in comment. by Tim Peters · 24 years ago
  94. e7c1f9b Add tests of PyLong_{As,From}{Unsigned,}Long. These are very much like by Tim Peters · 24 years ago
  95. d1a7da6 longobject.c: by Tim Peters · 24 years ago
  96. 91621db The merest start of a test for the PyLong_{As,From}{Unsigned,}LongLong() by Tim Peters · 24 years ago
  97. eb0d992 Slight adaptation of Michael Hudson's patch to test PyDict_Next() by Guido van Rossum · 24 years ago
  98. 5c4d5bf Related to SF bug 132008 (PyList_Reverse blows up). by Tim Peters · 25 years ago
  99. d66595f Renamed _testXXX to _testcapiXXX. Jack is my hero -- good call! by Tim Peters · 25 years ago[Renamed (92%) from Modules/_testmodule.c]
  100. 9ea17ac Patch derived from Trent's 101162: a Python/C API testing framework. by Tim Peters · 25 years ago