1. 309aa2d Keep PyLong_AsLongAndOverflow documentation and implementation in sync by Mark Dickinson · 15 years ago
  2. 1554b18 Merged revisions 76930 via svnmerge from by Mark Dickinson · 15 years ago
  3. 91d58bd Merged revisions 76822,76824 via svnmerge from by Benjamin Peterson · 15 years ago
  4. 6d138f1 Make sure that test_capsule always returns NULL on error; this may by Mark Dickinson · 15 years ago
  5. f08173b Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. This by Mark Dickinson · 15 years ago
  6. 6ce4a9a Merged revisions 76308 via svnmerge from by Mark Dickinson · 15 years ago
  7. 481b85a remove shadowing declartion by Benjamin Peterson · 15 years ago
  8. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  9. c15bdef Issue #6012: Add cleanup support to O& argument parsing. by Martin v. Löwis · 15 years ago
  10. b43d325 Merged revisions 72367 via svnmerge from by Benjamin Peterson · 15 years ago
  11. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  12. f172637 Merged revisions 72357 via svnmerge from by Benjamin Peterson · 15 years ago
  13. 725bfd8 Issue #5914: Add new C-API function PyOS_string_to_double, to complement by Mark Dickinson · 15 years ago
  14. 081dfee Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 16 years ago
  15. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  16. a54c909 Merged revisions 68425,68461,68498 via svnmerge from by Benjamin Peterson · 16 years ago
  17. 8ebab5d Merged revisions 68097,68099 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  18. f1f2f68 Recorded merge of revisions 68051 via svnmerge from by Nick Coghlan · 16 years ago
  19. 9203501 Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,67923-67924,67926-67927,67930,67943 via svnmerge from by Benjamin Peterson · 16 years ago
  20. 727c2c5 Style fix, use tab instead of space by Christian Heimes · 16 years ago
  21. 3bae65b Fixed a compiler warning by Christian Heimes · 16 years ago
  22. 206e307 Merged revisions 66887,66891,66902-66903,66905-66906,66911-66913,66922,66927-66928,66936,66939-66940,66962,66964,66973 via svnmerge from by Benjamin Peterson · 16 years ago
  23. 9b6df6a add tests for PyInstanceMethod_Type by Benjamin Peterson · 16 years ago
  24. a786b02 Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,66020 via svnmerge from by Benjamin Peterson · 16 years ago
  25. 6784eb7 #3643 add more checks to _testcapi to prevent segfaults by Benjamin Peterson · 16 years ago
  26. 0067bd6 add _testcapi.raise_memoryerror to make test_exceptions.test_MemoryError simpler by Benjamin Peterson · 16 years ago
  27. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  28. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  29. fbe94c5 Merged revisions 64842,64853,64856,64945 via svnmerge from by Robert Schuppenies · 16 years ago
  30. 1c95155 Make print_delta static. by Martin v. Löwis · 16 years ago
  31. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  32. b645bc7 Fixed refleak in _testcapi.test_s_code. by Alexandre Vassalotti · 16 years ago
  33. 0740459 #2798: PyArg_ParseTuple did not correctly handle the "s" code in case of unicode strings by Amaury Forgeot d'Arc · 16 years ago
  34. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  35. 380f7f2 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from by Christian Heimes · 17 years ago
  36. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 17 years ago
  37. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  38. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  39. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  40. 8866e0a Try to get this test to pass on Win64 by making clean for ssize_t by Neal Norwitz · 17 years ago
  41. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  42. b0d2633 Use unicode strings by Neal Norwitz · 17 years ago
  43. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  44. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  45. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  46. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  47. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  48. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  49. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  50. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  51. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  52. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  53. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  54. f02bcee Fix silly leak in test used in test_exceptions. by Michael W. Hudson · 21 years ago
  55. 3457e4b New support functions for test_getargs2. by Thomas Heller · 21 years ago
  56. 699cbb7 Get test_capi & test_getargs2 to pass on alphas by Neal Norwitz · 21 years ago
  57. 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 21 years ago
  58. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  59. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  60. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 22 years ago
  61. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 22 years ago
  62. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  63. acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 22 years ago
  64. 3e3eacb Fixed "u#" parser marker to pass through Unicode objects as-is without by Marc-André Lemburg · 23 years ago
  65. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  66. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  67. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  68. ede049b Add tests for new PyErr_NormalizeException() behavior by Jeremy Hylton · 23 years ago
  69. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
  70. 208efe5 Windows build broke from recent Unicode changes -- need to #define by Tim Peters · 23 years ago
  71. 83c9edc Fix error in comment, and in test_long_api and test_longlong_api remove by Tim Peters · 23 years ago
  72. ff70d3c Fixed typo in comment. by Tim Peters · 23 years ago
  73. e7c1f9b Add tests of PyLong_{As,From}{Unsigned,}Long. These are very much like by Tim Peters · 23 years ago
  74. d1a7da6 longobject.c: by Tim Peters · 23 years ago
  75. 91621db The merest start of a test for the PyLong_{As,From}{Unsigned,}LongLong() by Tim Peters · 23 years ago
  76. eb0d992 Slight adaptation of Michael Hudson's patch to test PyDict_Next() by Guido van Rossum · 23 years ago
  77. 5c4d5bf Related to SF bug 132008 (PyList_Reverse blows up). by Tim Peters · 24 years ago
  78. d66595f Renamed _testXXX to _testcapiXXX. Jack is my hero -- good call! by Tim Peters · 24 years ago[Renamed (92%) from Modules/_testmodule.c]
  79. 9ea17ac Patch derived from Trent's 101162: a Python/C API testing framework. by Tim Peters · 24 years ago