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