1. f1d002c bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) by Victor Stinner · 6 years ago
  2. f966e53 bpo-29564:_PyMem_DumpTraceback() suggests enabling tracemalloc (GH-10510) by Victor Stinner · 6 years ago
  3. 3ec9af7 bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) by Victor Stinner · 6 years ago
  4. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 6 years ago
  5. 8f7bb10 bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8567) by Serhiy Storchaka · 6 years ago
  6. 504373c bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) by Serhiy Storchaka · 6 years ago
  7. 5d39e04 bpo-32030: Rework memory allocators (#4625) by Victor Stinner · 7 years ago
  8. 39f0bb5 bpo-32136: Separate embedding tests from C API tests (GH-4567) by Nick Coghlan · 7 years ago
  9. 9e87e77 bpo-32096: Remove obj and mem from _PyRuntime (#4532) by Victor Stinner · 7 years ago
  10. e1a470b test_capi.test__testcapi() becomes more verbose (#4197) by Victor Stinner · 7 years ago
  11. 0ccc0f6 bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840) by Oren Milman · 7 years ago
  12. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  13. 85f6430 bpo-30695: Add set_nomemory(start, stop) to _testcapi (GH-2406) by xdegaye · 7 years ago
  14. eb52ac8 bpo-28180: Fix test_capi.test_forced_io_encoding() (#2155) by Victor Stinner · 7 years ago
  15. 6ea4186 bpo-28180: Implementation for PEP 538 (#659) by Nick Coghlan · 7 years ago
  16. d1c3c13 bpo-30447: Fix/skip the subinterpreters test on some platforms. (#1791) by Eric Snow · 7 years ago
  17. e377416 bpo-29102: Add a unique ID to PyInterpreterState. (#1639) by Eric Snow · 7 years ago
  18. 5f161fd bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (#1316) by Serhiy Storchaka · 7 years ago
  19. 66bffd1 bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110) by Serhiy Storchaka · 7 years ago
  20. 64c8f70 bpo-29951: Include function name for some error messages in `PyArg_ParseTuple*` (#916) by Michael Seifert · 7 years ago
  21. ea74f0c Issue #24932: Use proper command line parsing in _testembed by Steve Dower · 8 years ago
  22. 467ab19 Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising by Serhiy Storchaka · 8 years ago
  23. 56b2cf5 Issue #28484: Skip tests if GIL is not used or multithreading is disabled by Martin Panter · 8 years ago
  24. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  25. f41b82f Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support by Serhiy Storchaka · 8 years ago
  26. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  27. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  28. 2a95219 Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 8 years ago
  29. 13e602e Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 8 years ago
  30. ad52437 Fail if PyMem_Malloc() is called without holding the GIL by Victor Stinner · 8 years ago
  31. 6453e9e Issue #26564: Fix test_capi by Victor Stinner · 8 years ago
  32. c4aec36 Check the GIL in PyObject_Malloc() by Victor Stinner · 8 years ago
  33. 08572f6 Issue #26516: Fix test_capi on AIX by Victor Stinner · 8 years ago
  34. b3adb1a Issue #26516: Fix test_capi on 32-bit system by Victor Stinner · 8 years ago
  35. a1bc28a Issue #26516: Fix test_capi on Windows by Victor Stinner · 8 years ago
  36. 34be807 Add PYTHONMALLOC env var by Victor Stinner · 8 years ago
  37. a9725f8 Issue #26312: SystemError is now raised in all programming bugs with using by Serhiy Storchaka · 9 years ago
  38. 4cd63ef Issue #26198: ValueError is now raised instead of TypeError on buffer by Serhiy Storchaka · 9 years ago
  39. c4b813d Issue #26198: Fixed error messages for some argument parsing errors. by Serhiy Storchaka · 9 years ago
  40. 2356069 Issue #25800: Merge with 3.4 by Zachary Ware · 9 years ago
  41. 6d8a260 Issue #25800: Fix running test_capi directly by Zachary Ware · 9 years ago
  42. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  43. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 9 years ago
  44. c05e260 Issue #23799: Added test.support.start_threads() for running and cleaning up by Serhiy Storchaka · 9 years ago
  45. 263dcd2 Issue #23799: Added test.support.start_threads() for running and cleaning up by Serhiy Storchaka · 9 years ago
  46. 944fbcc Issue #23571: Enhance _Py_CheckFunctionResult() by Victor Stinner · 9 years ago
  47. 381a9bc Issue #23571: Update test_capi by Victor Stinner · 9 years ago
  48. 4f0efb0 Issue #23571: Fix test_capi by Victor Stinner · 9 years ago
  49. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  50. 86e9deb #22731 test_capi test fails because of mismatched newlines by Steve Dower · 10 years ago
  51. bca9acf Issue #18093: fix test_capi test skip due to _testembed move by Nick Coghlan · 10 years ago
  52. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  53. b2bef62 Issue #19977: Fix test_capi when LC_CTYPE locale is POSIX by Victor Stinner · 10 years ago
  54. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
  55. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  56. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  57. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  58. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  59. fcafe43 Fix inspect.signature tests for builtins when docstrings are compiled out. by Larry Hastings · 11 years ago
  60. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  61. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  62. c12f09e Issue #19440: Clean up test_capi by Zachary Ware · 11 years ago
  63. dfcd694 Issue #19440: Clean up test_capi by Zachary Ware · 11 years ago
  64. 4e641df Close #19439: execute embedding tests on Windows by Nick Coghlan · 11 years ago
  65. 3321fb8 Issue #16129: this should appease the buildbots by Nick Coghlan · 11 years ago
  66. 8f9571e Skip #16129 test until I debug cross-platform issues by Nick Coghlan · 11 years ago
  67. 6508dc5 Try to debug overspecified test :( by Nick Coghlan · 11 years ago
  68. 7d270ee Issue #16129: Add `Py_SetStandardStreamEncoding` by Nick Coghlan · 11 years ago
  69. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  70. 7a2572c test_capi: make a specific test case for the subinterpreter test by Antoine Pitrou · 11 years ago
  71. e1857d9 Fix indentation. by Ezio Melotti · 11 years ago
  72. 25a4045 #11732: add a new suppress_crash_popup() context manager to test.support. by Ezio Melotti · 11 years ago
  73. 35246bd #17249: merge with 3.2. by Ezio Melotti · 11 years ago
  74. 29267c8 #17249: convert a test in test_capi to use unittest and reap threads. by Ezio Melotti · 11 years ago
  75. 175df1e Remove outdated statement by Antoine Pitrou · 12 years ago
  76. b24d0d9 Remove outdated statement by Antoine Pitrou · 12 years ago
  77. 6e1d2b6 Closes #16126: PyErr_Format format mismatch in _testcapimodule.c by Jesus Cea · 12 years ago
  78. 5b27c53 Merge 3.2. by Stefan Krah · 12 years ago
  79. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  80. c0c03be Merge 3.2. by Stefan Krah · 12 years ago
  81. db579d7 Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). by Stefan Krah · 12 years ago
  82. 6adf243 Merge 3.2. by Stefan Krah · 12 years ago
  83. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  84. 48ed360 Issue #14769: Incorporated mildly pedantic feedback from python-dev. by Larry Hastings · 12 years ago
  85. 8f904da Issue #14769: test_capi now has SkipitemTest, which cleverly checks by Larry Hastings · 12 years ago
  86. 7395404 Issue #9116: Allowed test to pass on Windows by adjusting the test condition slightly to allow for a Windows-specific error message. by Vinay Sajip · 12 years ago
  87. aa2efcb Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo. by Martin v. Löwis · 12 years ago
  88. 7422b22 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 13 years ago
  89. 2f828f2 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 13 years ago
  90. 61600cb Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows. by Antoine Pitrou · 13 years ago
  91. 71cbafb Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows. by Antoine Pitrou · 13 years ago
  92. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  93. 8e60577 Issue #10914: Add a minimal embedding test to test_capi. by Antoine Pitrou · 13 years ago
  94. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  95. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  96. 915605c Merged revisions 88550 via svnmerge from by Antoine Pitrou · 13 years ago
  97. 0ca4624 Issue #8932: Skip required when compiled --without-threads. by Stefan Krah · 14 years ago
  98. 4000ffa Fix test_capi for Windows: strip newline characters by Victor Stinner · 14 years ago
  99. 8e0bdfd Make PyErr_Occurred return NULL if there is no current thread. Previously it by Jeffrey Yasskin · 14 years ago
  100. 45df820 Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge from by Victor Stinner · 14 years ago