1. ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 13 years ago
  2. a8857af Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 13 years ago
  3. c5bef75 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 13 years ago
  4. 59488d2 Closes #9254: backport __import__ docstring/doc mentions of importlib. by R David Murray · 13 years ago
  5. ed11a5d Issue #8767: Restore building with --disable-unicode. by Martin v. Löwis · 13 years ago
  6. a5ae1f0 remove py3k warning for callable by Benjamin Peterson · 14 years ago
  7. 39540a0 Improve docstring for divmod() by Raymond Hettinger · 14 years ago
  8. ba8b3a2 Close #12501: Adjust callable() warning: callable() is only not supported in by Victor Stinner · 14 years ago
  9. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  10. ef9b4ab Fix trailing whitespace. by Mark Dickinson · 15 years ago
  11. a8d2668 Issue #1533: fix inconsistency in range function argument processing: by Mark Dickinson · 15 years ago
  12. 5f429e0 account for PyObject_IsInstance's new ability to fail by Benjamin Peterson · 15 years ago
  13. 3dc2541 Issue #6985: number of range() items should be constrained to lie by Mark Dickinson · 15 years ago
  14. bce7837 round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. by Mark Dickinson · 15 years ago
  15. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 15 years ago
  16. 90ed611 a better callable replacement by Benjamin Peterson · 15 years ago
  17. 0e0e215 Warn against replacing PyNumber_Add with PyNumber_InPlaceAdd in sum by Mark Dickinson · 16 years ago
  18. d692a71 revert r74699 since it loses useful error information by Benjamin Peterson · 16 years ago
  19. 5515990 PyObject_GetIter can set an error for its self just fine by Benjamin Peterson · 16 years ago
  20. 753d162 when print() gets unicode arguments, sep and end should be unicode by default #4618 by Benjamin Peterson · 16 years ago
  21. dd0388a further hint to where the open docs really are by Philip Jenvey · 16 years ago
  22. 4c1fe51 don't ignore exceptions from _PyObject_LengthHint by Benjamin Peterson · 16 years ago
  23. 1bdf7e9 Issue #1869: Fix a couple of minor round() issues. by Mark Dickinson · 16 years ago
  24. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 16 years ago
  25. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
  26. 08336e3 follup to #3473: don't duplicate the reduce code by Benjamin Peterson · 17 years ago
  27. 39fd672 #3479: unichr(2**32) used to return u'\x00'. by Amaury Forgeot d'Arc · 17 years ago
  28. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 17 years ago
  29. e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 17 years ago
  30. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 17 years ago
  31. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  32. 6585660 Issue 2784: fix leaks in exception exit. by Raymond Hettinger · 17 years ago
  33. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  34. 3497f94 First step of the C API rename: by Christian Heimes · 17 years ago
  35. c6d64ec revert 63425 over Guido's Febuary message about this, that I missed by Benjamin Peterson · 17 years ago
  36. d7943cb fix spelling by Benjamin Peterson · 17 years ago
  37. 79a922d add Py3k warnings to oct and hex. backport hex behavior (because it's not different) by Benjamin Peterson · 17 years ago
  38. b9030f4 #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate by Benjamin Peterson · 17 years ago
  39. 28e0873 #2719: backport next() from 3k. by Georg Brandl · 17 years ago
  40. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
  41. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
  42. f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 17 years ago
  43. fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 17 years ago
  44. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  45. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  46. 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 17 years ago
  47. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
  48. 8e6ec2f Added a warning when -3 is enabled and None is passed to filter as the first argument. by David Wolever · 17 years ago
  49. 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 17 years ago
  50. b93e7d1 Add a little info to the 3k deprecation warnings about what to use instead. by Neal Norwitz · 17 years ago
  51. 53152a1 map(None, ...) is not supported in 3.0. by Neal Norwitz · 17 years ago
  52. 3cd8194 Added bin() builtin. I'm going to check in the tests in a seperate checkin, because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there. by Eric Smith · 17 years ago
  53. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  54. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 17 years ago
  55. 867558a CallMethod is faster with a NULL third-argument than with an empty format string. by Raymond Hettinger · 17 years ago
  56. 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
  57. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 17 years ago
  58. 9fcd8ce Fix C++-style comment. by Georg Brandl · 17 years ago
  59. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
  60. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
  61. 01dbc10 Improve performance of built-in any()/all() by avoiding PyIter_Next() -- by Guido van Rossum · 17 years ago
  62. 4e3ebe0 Note that open() is the preferred way to open files (issue 1510). by Skip Montanaro · 17 years ago
  63. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
  64. a45c487 Missing DECREFs by Raymond Hettinger · 18 years ago
  65. 3a8daf5 Fixup error return and add support for intermixed ints and floats/ by Raymond Hettinger · 18 years ago
  66. 3f8caa3 Optimize sum() for integer and float inputs. by Raymond Hettinger · 18 years ago
  67. df25efe Add a bunch more deprecation warnings for builtins that are going away in 3.0 by Neal Norwitz · 18 years ago
  68. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago
  69. 5240d74 Patch #1444529: the builtin compile() now accepts keyword arguments. (backport) by Georg Brandl · 18 years ago
  70. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  71. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  72. 8134d06 Bug #1283491: follow docstring convention wrt. keyword-able args in sum(). by Georg Brandl · 19 years ago
  73. 477ca1c Fix SF #1552093, eval docstring typo (3 ps in mapping) by Neal Norwitz · 19 years ago
  74. 43bd4db It's highly unlikely, though possible for PyEval_Get*() to return NULLs. by Neal Norwitz · 19 years ago
  75. 7e3ba2a Bug #1535165: fixed a segfault in input() and raw_input() when by Georg Brandl · 19 years ago
  76. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 19 years ago
  77. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 19 years ago
  78. 92e212f Accept keyword arguments for __import__ and doc the addition of the level param from PEP 328. by Neal Norwitz · 19 years ago
  79. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 19 years ago
  80. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  81. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
  82. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  83. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 19 years ago
  84. a361bd8 Fix compiler warning (int vs Py_ssize_t mismatch by Neal Norwitz · 19 years ago
  85. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 19 years ago
  86. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  87. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  88. 6f0d479 Fix an int/long mismatch identified here: by Neal Norwitz · 19 years ago
  89. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  90. 3a9a3e7 Fix memory leaks by Neal Norwitz · 19 years ago
  91. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 20 years ago
  92. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  93. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 20 years ago
  94. 71d7e70 Removed a check "if (args != NULL)" which is always True and makes no sense. by Armin Rigo · 20 years ago
  95. 77c85e6 bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. by Georg Brandl · 20 years ago
  96. 99d7e4e Whitespace normalization. by Georg Brandl · 20 years ago
  97. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 20 years ago
  98. e35b657 Fix cleanup DECREF logic in builtin_filter function. by Georg Brandl · 20 years ago
  99. 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 20 years ago
  100. 9e635cf Put parentheses around the assignment in the 'while' loop conditional by Brett Cannon · 20 years ago