1. e8db861 Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple() by Martin Panter · 8 years ago
  2. 2275e62 Fix spelling errors in code comments by Martin Panter · 8 years ago
  3. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  4. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  5. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  6. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  7. ec1aa5c More typos in 3.5 documentation and comments by Martin Panter · 9 years ago
  8. 740d613 merge by Raymond Hettinger · 9 years ago
  9. 610a51f Issue #23757: Only call the concrete list API for exact lists. by Raymond Hettinger · 9 years ago
  10. 944fbcc Issue #23571: Enhance _Py_CheckFunctionResult() by Victor Stinner · 9 years ago
  11. 3b06dfb Issue #23571: In debug mode, _Py_CheckFunctionResult() now calls by Victor Stinner · 9 years ago
  12. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  13. 283f3f8 Issue #23571: Oops, fix #ifdef assert() by Victor Stinner · 9 years ago
  14. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  15. 5178d91 Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() by Stefan Krah · 9 years ago
  16. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  17. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  18. 2e6658b Merge from 3.4. by Stefan Krah · 9 years ago
  19. 7213fcc Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 9 years ago
  20. 363af44 Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity by Stefan Krah · 9 years ago
  21. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
  22. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  23. 72b8a80 Closes #22540: speed up PyObject_IsInstance and PyObject_IsSubclass in the common case that the second argument has metaclass "type". by Georg Brandl · 10 years ago
  24. 8f4ec8d Issue #22290: PyObject_Call() now fails with an assertion error when called by Victor Stinner · 10 years ago
  25. 3cbae68 merge 3.4 by Benjamin Peterson · 10 years ago
  26. 1791c22 use NULL not 0 by Benjamin Peterson · 10 years ago
  27. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  28. 4ac9c00 Better assertion in PyObject_Call() to detect functions returning a result with by Victor Stinner · 11 years ago
  29. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  30. 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  31. 0b0c867 Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and by Victor Stinner · 11 years ago
  32. f740d46 Issue #19369: Optimized the usage of __length_hint__(). by Serhiy Storchaka · 11 years ago
  33. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  34. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  35. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  36. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  37. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  38. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  39. 3de5869 Issue #18408: PyObject_Call() now fails with an assertion error in debug mode by Victor Stinner · 11 years ago
  40. 0e2d3cf Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCharpArray() by Victor Stinner · 11 years ago
  41. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 11 years ago
  42. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 11 years ago
  43. 93196eb Issue #17715: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  44. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 11 years ago
  45. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  46. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  47. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  48. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  49. 74b38b1 Issue #16148: Small improvements and cleanup. Added version information by Armin Ronacher · 12 years ago
  50. b70e8a1 and another one by Christian Heimes · 12 years ago
  51. 6314d16 move var declaration to top of block to fix compilation on Windows, fixes a7ec0a1b0f7c by Christian Heimes · 12 years ago
  52. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  53. 3d78385 Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  54. 5b27c53 Merge 3.2. by Stefan Krah · 12 years ago
  55. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  56. 6adf243 Merge 3.2. by Stefan Krah · 12 years ago
  57. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  58. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  59. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  60. 520e850 long() -> int() by Benjamin Peterson · 12 years ago
  61. b7f1da5 make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.c by Benjamin Peterson · 12 years ago
  62. d614e70 rewrite this function, which was still accounting for classic classes by Benjamin Peterson · 12 years ago
  63. 1b1a8e7 correctly lookup __trunc__ in int() constructor by Benjamin Peterson · 12 years ago
  64. 9fc9bf4 some more identifier goodness by Benjamin Peterson · 12 years ago
  65. 4e14174 Whitespace. by Stefan Krah · 12 years ago
  66. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  67. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  68. 138f465 Add a separate NEWS entry for a change to PyObject_CallMethod in the PEP 380 patch, and make the private CallMethod variants consistent with the public one by Nick Coghlan · 13 years ago
  69. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  70. 2199227 fix weird indentation by Benjamin Peterson · 13 years ago
  71. 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
  72. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  73. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  74. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  75. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  76. f2a9421 Close #10616: mention bytes and bytearray in PyObject_AsCharBuffer() error by Victor Stinner · 13 years ago
  77. 0a5f65a Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s by Victor Stinner · 13 years ago
  78. 72288d4 code style by Benjamin Peterson · 14 years ago
  79. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 14 years ago
  80. 568867a check for NULL tp_as_mapping in PySequence_(Get/Set/Del)Slice #9834 by Benjamin Peterson · 14 years ago
  81. f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become by Antoine Pitrou · 14 years ago
  82. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  83. e893af5 update error message by Benjamin Peterson · 14 years ago
  84. 6f889ad3 Merged revisions 81712 via svnmerge from by Benjamin Peterson · 14 years ago
  85. da2cf04 Merged revisions 81706-81707 via svnmerge from by Benjamin Peterson · 14 years ago
  86. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  87. 68f5217 * Fix the refcount leak in _PySequence_BytesToCharpArray from r78946. by Gregory P. Smith · 14 years ago
  88. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  89. 8f326b2 Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from by Benjamin Peterson · 15 years ago
  90. 61b96dc Slightly improve buffer-related error message. by Georg Brandl · 15 years ago
  91. 94c65d9 Merged revisions 72907 via svnmerge from by Benjamin Peterson · 15 years ago
  92. dcfe8e4 Remove unused variables. by Georg Brandl · 15 years ago
  93. 88fe5f9 Merged revisions 72690 via svnmerge from by Benjamin Peterson · 15 years ago
  94. b0ba27d only need to catch an TypeError here by Benjamin Peterson · 15 years ago
  95. e18df23 Merged revisions 72518 via svnmerge from by Benjamin Peterson · 15 years ago
  96. a5758c0 Merged revisions 72508 via svnmerge from by Benjamin Peterson · 15 years ago
  97. 0192bff Merged revisions 71607,71653,71696,71771,71786 via svnmerge from by Georg Brandl · 15 years ago
  98. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  99. 5d65412 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 15 years ago
  100. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago