1. e105f98 Fix two crashers (borrowed_ref_[34].py from the trunk). by Guido van Rossum · 17 years ago
  2. 8568752 Fix SF #1552093, eval docstring typo (3 ps in mapping) by Neal Norwitz · 18 years ago
  3. 43bd4db It's highly unlikely, though possible for PyEval_Get*() to return NULLs. by Neal Norwitz · 18 years ago
  4. 7e3ba2a Bug #1535165: fixed a segfault in input() and raw_input() when by Georg Brandl · 18 years ago
  5. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 18 years ago
  6. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  7. 92e212f Accept keyword arguments for __import__ and doc the addition of the level param from PEP 328. by Neal Norwitz · 18 years ago
  8. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  9. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  10. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  11. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  12. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  13. a361bd8 Fix compiler warning (int vs Py_ssize_t mismatch by Neal Norwitz · 18 years ago
  14. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  15. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  16. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  17. 6f0d479 Fix an int/long mismatch identified here: by Neal Norwitz · 19 years ago
  18. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  19. 3a9a3e7 Fix memory leaks by Neal Norwitz · 19 years ago
  20. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  21. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  22. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  23. 71d7e70 Removed a check "if (args != NULL)" which is always True and makes no sense. by Armin Rigo · 19 years ago
  24. 77c85e6 bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. by Georg Brandl · 19 years ago
  25. 99d7e4e Whitespace normalization. by Georg Brandl · 19 years ago
  26. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  27. e35b657 Fix cleanup DECREF logic in builtin_filter function. by Georg Brandl · 19 years ago
  28. 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 19 years ago
  29. 9e635cf Put parentheses around the assignment in the 'while' loop conditional by Brett Cannon · 20 years ago
  30. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  31. 8d494f3 Patch #1015021: Stop claiming that coerce can return None. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  32. fd39ad4 Patch #1005468: Disambiguate "min() or max()" exception string. by Martin v. Löwis · 20 years ago
  33. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  34. 52db519 for some reason, the lack of adherence to Python's C whitespace rules by Michael W. Hudson · 20 years ago
  35. 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 20 years ago
  36. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
  37. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  38. 513ffe8 * Fix missing return after error message is set. by Raymond Hettinger · 20 years ago
  39. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  40. da4d6cb OS/2 VACPP build updates/fixes by Andrew MacIntyre · 20 years ago
  41. ff83c2b Fix input() builtin function to respect compiler flags. by Hye-Shik Chang · 20 years ago
  42. b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  43. 77f3c87 Apply map/zip pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  44. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  45. d75ede3 Remove the PendingDeprecationWarning from apply(). apply() will by Fred Drake · 21 years ago
  46. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  47. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  48. a253e18 regressing the performance bugfix -- Guido wants the performance bug left by Alex Martelli · 21 years ago
  49. a2777d3 Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes by Alex Martelli · 21 years ago
  50. 5cf6394 Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 21 years ago
  51. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  52. 364f6be Correct check of PyUnicode_Resize() return value. by Jeremy Hylton · 21 years ago
  53. 1aad9c7 Reflow long lines and reformat. by Jeremy Hylton · 21 years ago
  54. c58a3a1 Fix a crash: when sq_item failed the code continued blindly and used the by Walter Dörwald · 21 years ago
  55. 6897355 Make filter(bool, ...) as fast as filter(None, ...). by Neil Schemenauer · 21 years ago
  56. eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 21 years ago
  57. a9b9c9f some more error-message enhancements by Alex Martelli · 21 years ago
  58. f471d47 complete and clarify some error messages for range() by Alex Martelli · 21 years ago
  59. 41c9f88 fixed a potential refcount bug (thanks Raymond!). by Alex Martelli · 21 years ago
  60. a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 21 years ago
  61. 28e83e3 Some errors from range() should be TypeError, not ValueError. by Guido van Rossum · 21 years ago
  62. 817d6c9 Prompted by Tim's comment, when handle_range_longs() sees an by Guido van Rossum · 21 years ago
  63. 874e1f7 handle_range_longs(): refcount handling is very delicate here, and by Tim Peters · 21 years ago
  64. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 21 years ago
  65. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 21 years ago
  66. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  67. 3e59076 Fix SF bug #690435, apply fails to check if warning raises exception by Neal Norwitz · 21 years ago
  68. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 21 years ago
  69. 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 21 years ago
  70. 2c646c9 Squashed compiler wng about signed/unsigned clash in comparison. by Tim Peters · 21 years ago
  71. 1918f77 Change filterstring() and filterunicode(): If the by Walter Dörwald · 21 years ago
  72. b9b8e9c My previous checkin caused compile() to no longer accept buffers, as noted by Just van Rossum · 21 years ago
  73. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 21 years ago
  74. c3da83f Make sure filter() never returns tuple, str or unicode by Walter Dörwald · 21 years ago
  75. 531e000 PyUnicode_Resize() doesn't free its argument in case of a failure, by Walter Dörwald · 21 years ago
  76. 903f1e0 filterstring() and filterunicode() in Python/bltinmodule.c by Walter Dörwald · 21 years ago
  77. 94c30c0 SF #661437, apply() should get PendingDeprecation by Neal Norwitz · 21 years ago
  78. 8afd757 Patch #636005: Filter unicode into unicode. by Martin v. Löwis · 22 years ago
  79. 69bf8f3 SF bug #655271: Slightly modify locals() doc by Raymond Hettinger · 22 years ago
  80. bbfb910 Make error message more specific for min() and max(). Suggested by MvL. by Raymond Hettinger · 22 years ago
  81. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  82. d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
  83. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  84. 4c01342 execfile should call PyErr_SetFromErrnoWithFilename instead of by Peter Schneider-Kamp · 22 years ago
  85. c7903a1 A nice little speed-up for filter(): by Guido van Rossum · 22 years ago
  86. 31d2df5 Patch #550192: Set softspace to 0 in raw_input(). by Martin v. Löwis · 22 years ago
  87. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  88. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  89. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  90. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  91. c4c453f Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. by Raymond Hettinger · 22 years ago
  92. 32a7e7f Change name from string to basestring by Neal Norwitz · 22 years ago
  93. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  94. 39a86c2 SF bug 555042: zip() may trigger MemoryError. by Tim Peters · 22 years ago
  95. 67d687a builtin_zip(): Take a good guess at how big the result list will be, by Tim Peters · 22 years ago
  96. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  97. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  98. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  99. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  100. 3484a18 Patch #494045: patches errno and stat to cope on plan9. by Martin v. Löwis · 22 years ago