1. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  2. 4ac9c00 Better assertion in PyObject_Call() to detect functions returning a result with by Victor Stinner · 11 years ago
  3. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  4. 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  5. 0b0c867 Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and by Victor Stinner · 11 years ago
  6. f740d46 Issue #19369: Optimized the usage of __length_hint__(). by Serhiy Storchaka · 11 years ago
  7. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  8. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  9. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  10. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  11. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  12. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  13. 3de5869 Issue #18408: PyObject_Call() now fails with an assertion error in debug mode by Victor Stinner · 11 years ago
  14. 0e2d3cf Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCharpArray() by Victor Stinner · 11 years ago
  15. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 11 years ago
  16. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 11 years ago
  17. 93196eb Issue #17715: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  18. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 11 years ago
  19. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  20. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  21. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  22. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  23. 74b38b1 Issue #16148: Small improvements and cleanup. Added version information by Armin Ronacher · 12 years ago
  24. b70e8a1 and another one by Christian Heimes · 12 years ago
  25. 6314d16 move var declaration to top of block to fix compilation on Windows, fixes a7ec0a1b0f7c by Christian Heimes · 12 years ago
  26. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  27. 3d78385 Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  28. 5b27c53 Merge 3.2. by Stefan Krah · 12 years ago
  29. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  30. 6adf243 Merge 3.2. by Stefan Krah · 12 years ago
  31. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  32. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  33. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  34. 520e850 long() -> int() by Benjamin Peterson · 12 years ago
  35. b7f1da5 make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.c by Benjamin Peterson · 12 years ago
  36. d614e70 rewrite this function, which was still accounting for classic classes by Benjamin Peterson · 12 years ago
  37. 1b1a8e7 correctly lookup __trunc__ in int() constructor by Benjamin Peterson · 12 years ago
  38. 9fc9bf4 some more identifier goodness by Benjamin Peterson · 12 years ago
  39. 4e14174 Whitespace. by Stefan Krah · 12 years ago
  40. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  41. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 12 years ago
  42. 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 · 12 years ago
  43. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 12 years ago
  44. 2199227 fix weird indentation by Benjamin Peterson · 13 years ago
  45. 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
  46. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  47. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  48. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  49. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  50. f2a9421 Close #10616: mention bytes and bytearray in PyObject_AsCharBuffer() error by Victor Stinner · 13 years ago
  51. 0a5f65a Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s by Victor Stinner · 13 years ago
  52. 72288d4 code style by Benjamin Peterson · 14 years ago
  53. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 14 years ago
  54. 568867a check for NULL tp_as_mapping in PySequence_(Get/Set/Del)Slice #9834 by Benjamin Peterson · 14 years ago
  55. f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become by Antoine Pitrou · 14 years ago
  56. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  57. e893af5 update error message by Benjamin Peterson · 14 years ago
  58. 6f889ad3 Merged revisions 81712 via svnmerge from by Benjamin Peterson · 14 years ago
  59. da2cf04 Merged revisions 81706-81707 via svnmerge from by Benjamin Peterson · 14 years ago
  60. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  61. 68f5217 * Fix the refcount leak in _PySequence_BytesToCharpArray from r78946. by Gregory P. Smith · 14 years ago
  62. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  63. 8f326b2 Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from by Benjamin Peterson · 15 years ago
  64. 61b96dc Slightly improve buffer-related error message. by Georg Brandl · 15 years ago
  65. 94c65d9 Merged revisions 72907 via svnmerge from by Benjamin Peterson · 15 years ago
  66. dcfe8e4 Remove unused variables. by Georg Brandl · 15 years ago
  67. 88fe5f9 Merged revisions 72690 via svnmerge from by Benjamin Peterson · 15 years ago
  68. b0ba27d only need to catch an TypeError here by Benjamin Peterson · 15 years ago
  69. e18df23 Merged revisions 72518 via svnmerge from by Benjamin Peterson · 15 years ago
  70. a5758c0 Merged revisions 72508 via svnmerge from by Benjamin Peterson · 15 years ago
  71. 0192bff Merged revisions 71607,71653,71696,71771,71786 via svnmerge from by Georg Brandl · 15 years ago
  72. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  73. 5d65412 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 15 years ago
  74. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  75. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  76. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  77. e5e298f Issue #4910 (1st patch of a series): fix int() and the corresponding by Mark Dickinson · 15 years ago
  78. 60320cb #3946 fix PyObject_CheckBuffer on a memoryview object by Benjamin Peterson · 16 years ago
  79. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
  80. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  81. 74bbea7 Merged revisions 65677-65678,65683 via svnmerge from by Martin v. Löwis · 16 years ago
  82. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  83. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  84. 5c960b8 Revert 64451. by Raymond Hettinger · 16 years ago
  85. d11a443 Merge 64438: hex/oct/bin can show floats exactly. by Raymond Hettinger · 16 years ago
  86. 3900088 Remove locking from buffer protocol as-per discussion. by Travis E. Oliphant · 16 years ago
  87. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  88. 7179220 Issue 2440: revert r62269 and r62279. These changes were made in an effort to fix test_args2.Signed_TestCase.test_n(), which was failing on Windows x64 on the following line: 'self.failUnlessEqual(99, getargs_n(Long()))'. Although the two commits *did* fix the test on Windows x64, it's become clear that it's the test that's incorrect, and the changes to PyNumber_Index() in particular were not warranted (and actually violate PEP 357). This commit will get us back to where we were at r62268, before I started butchering things. by Trent Nelson · 16 years ago
  89. d12fbe9 Fix change to PyNumber_Index() made in r62269, which incorrectly allowed floats to be interpreted as longs. Thanks to Benjamin Peterson for picking this up. by Trent Nelson · 16 years ago
  90. e2ae468 Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), extend Objects/abstract.c's PyNumber_Index() to accept PyObjects that have nb_int slots, and update test_getargs2 to test that an exception is thrown when __int__() returns a non-int object. by Trent Nelson · 16 years ago
  91. e25f35e Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 via svnmerge from by Christian Heimes · 16 years ago
  92. d5e2b6f Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from by Christian Heimes · 16 years ago
  93. 4621875 Fix an apparent typo. This test of the readonly boolean should have been != 0 by Gregory P. Smith · 16 years ago
  94. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  95. a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 16 years ago
  96. 15ebc88 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552-60567 via svnmerge from by Christian Heimes · 16 years ago
  97. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 16 years ago
  98. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  99. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  100. 79a082b Fix issue #1553: An errornous __length_hint__ can make list() raise a by Alexandre Vassalotti · 17 years ago