1. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  2. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  3. f2a9421 Close #10616: mention bytes and bytearray in PyObject_AsCharBuffer() error by Victor Stinner · 13 years ago
  4. 0a5f65a Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s by Victor Stinner · 13 years ago
  5. 72288d4 code style by Benjamin Peterson · 14 years ago
  6. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 14 years ago
  7. 568867a check for NULL tp_as_mapping in PySequence_(Get/Set/Del)Slice #9834 by Benjamin Peterson · 14 years ago
  8. f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become by Antoine Pitrou · 14 years ago
  9. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  10. e893af5 update error message by Benjamin Peterson · 14 years ago
  11. 6f889ad3 Merged revisions 81712 via svnmerge from by Benjamin Peterson · 14 years ago
  12. da2cf04 Merged revisions 81706-81707 via svnmerge from by Benjamin Peterson · 14 years ago
  13. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  14. 68f5217 * Fix the refcount leak in _PySequence_BytesToCharpArray from r78946. by Gregory P. Smith · 14 years ago
  15. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  16. 8f326b2 Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from by Benjamin Peterson · 15 years ago
  17. 61b96dc Slightly improve buffer-related error message. by Georg Brandl · 15 years ago
  18. 94c65d9 Merged revisions 72907 via svnmerge from by Benjamin Peterson · 15 years ago
  19. dcfe8e4 Remove unused variables. by Georg Brandl · 15 years ago
  20. 88fe5f9 Merged revisions 72690 via svnmerge from by Benjamin Peterson · 15 years ago
  21. b0ba27d only need to catch an TypeError here by Benjamin Peterson · 15 years ago
  22. e18df23 Merged revisions 72518 via svnmerge from by Benjamin Peterson · 15 years ago
  23. a5758c0 Merged revisions 72508 via svnmerge from by Benjamin Peterson · 15 years ago
  24. 0192bff Merged revisions 71607,71653,71696,71771,71786 via svnmerge from by Georg Brandl · 15 years ago
  25. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  26. 5d65412 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 15 years ago
  27. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  28. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  29. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  30. e5e298f Issue #4910 (1st patch of a series): fix int() and the corresponding by Mark Dickinson · 16 years ago
  31. 60320cb #3946 fix PyObject_CheckBuffer on a memoryview object by Benjamin Peterson · 16 years ago
  32. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
  33. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  34. 74bbea7 Merged revisions 65677-65678,65683 via svnmerge from by Martin v. Löwis · 16 years ago
  35. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  36. 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
  37. 5c960b8 Revert 64451. by Raymond Hettinger · 16 years ago
  38. d11a443 Merge 64438: hex/oct/bin can show floats exactly. by Raymond Hettinger · 16 years ago
  39. 3900088 Remove locking from buffer protocol as-per discussion. by Travis E. Oliphant · 16 years ago
  40. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  41. 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
  42. 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
  43. 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
  44. e25f35e Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 via svnmerge from by Christian Heimes · 16 years ago
  45. 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
  46. 4621875 Fix an apparent typo. This test of the readonly boolean should have been != 0 by Gregory P. Smith · 16 years ago
  47. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  48. 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
  49. 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
  50. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 16 years ago
  51. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  52. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  53. 79a082b Fix issue #1553: An errornous __length_hint__ can make list() raise a by Alexandre Vassalotti · 17 years ago
  54. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  55. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  56. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  57. fe9bed0 Fix problems with memoryview object. There is still more to do to finish PEP 3118. The memory-view object needs to be fleshed out and the struct module needs to be modified. by Travis E. Oliphant · 17 years ago
  58. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  59. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  60. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  61. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  62. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  63. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  64. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  65. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  66. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  67. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  68. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  69. 29478ef Merged revisions 55588-55630 via svnmerge from by Guido van Rossum · 17 years ago
  70. adee45e Merged revisions 55545-55587 via svnmerge from by Guido van Rossum · 17 years ago
  71. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  72. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 17 years ago
  73. 032a284 Don't confound Neil S on b"a"[0] = b"b". by Guido van Rossum · 17 years ago
  74. 025488b These comments aren't relevant for 3k. They were to support modules compiled by Neal Norwitz · 17 years ago
  75. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  76. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  77. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  78. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  79. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  80. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  81. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  82. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  83. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  84. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  85. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  86. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  87. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  88. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  89. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  90. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  91. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  92. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  93. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  94. 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 19 years ago
  95. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  96. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  97. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  98. 0edc7a0 Fix: by Michael W. Hudson · 19 years ago
  99. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  100. 193814c Small boost to PySequence_Fast(). Lists build faster than tuples for by Raymond Hettinger · 20 years ago