1. 7fcf224 Add 8-bit chr() back as chr8(). by Guido van Rossum · 17 years ago
  2. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  3. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  4. 938ef57 Kill unichr() itself. by Guido van Rossum · 17 years ago
  5. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  6. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  7. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  8. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  9. 98f9746 Support marshal.dump(x, f) where f is not a real file. by Guido van Rossum · 17 years ago
  10. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  11. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  12. a88a033 Add raw_input() back, named input(). Revive the old unittests too. by Guido van Rossum · 17 years ago
  13. 257d3d9 Fix leak in the print function. by Georg Brandl · 17 years ago
  14. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  15. 452bf51 Essential changes for print function changes. by Guido van Rossum · 17 years ago
  16. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  17. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  18. 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 18 years ago
  19. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  20. 16f3e03 Check "sep" and "end" for stringness in Print(). by Georg Brandl · 18 years ago
  21. 3434351 Add built-in Print() function. This is PEP 3105 except for the name; by Guido van Rossum · 18 years ago
  22. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  23. b65fb33 SF patch 1546297 (with some tweaks): by Guido van Rossum · 18 years ago
  24. 801f0d7 Make built-in zip() equal to itertools.izip(). by Guido van Rossum · 18 years ago
  25. 93a6692 Make it compile with C89. by Guido van Rossum · 18 years ago
  26. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  27. 89da5d7 Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. by Guido van Rossum · 18 years ago
  28. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  29. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  30. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  31. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago
  32. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  33. d910855 Remove apply() by Neal Norwitz · 18 years ago
  34. 9e2b966 Whoops, input *and* raw_input are slated for removal, and now both are gone. by Neal Norwitz · 18 years ago
  35. cd65e3f raw_input() -> input(). old input behavior is history (and test_builtin passes again). It was failing due to future division. by Neal Norwitz · 18 years ago
  36. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  37. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  38. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  39. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  40. a361bd8 Fix compiler warning (int vs Py_ssize_t mismatch by Neal Norwitz · 18 years ago
  41. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  42. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  43. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  44. 6f0d479 Fix an int/long mismatch identified here: by Neal Norwitz · 19 years ago
  45. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  46. 3a9a3e7 Fix memory leaks by Neal Norwitz · 19 years ago
  47. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  48. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  49. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  50. 71d7e70 Removed a check "if (args != NULL)" which is always True and makes no sense. by Armin Rigo · 19 years ago
  51. 77c85e6 bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. by Georg Brandl · 19 years ago
  52. 99d7e4e Whitespace normalization. by Georg Brandl · 19 years ago
  53. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  54. e35b657 Fix cleanup DECREF logic in builtin_filter function. by Georg Brandl · 19 years ago
  55. 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 19 years ago
  56. 9e635cf Put parentheses around the assignment in the 'while' loop conditional by Brett Cannon · 20 years ago
  57. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  58. 8d494f3 Patch #1015021: Stop claiming that coerce can return None. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  59. fd39ad4 Patch #1005468: Disambiguate "min() or max()" exception string. by Martin v. Löwis · 20 years ago
  60. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  61. 52db519 for some reason, the lack of adherence to Python's C whitespace rules by Michael W. Hudson · 20 years ago
  62. 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 20 years ago
  63. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
  64. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  65. 513ffe8 * Fix missing return after error message is set. by Raymond Hettinger · 20 years ago
  66. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  67. da4d6cb OS/2 VACPP build updates/fixes by Andrew MacIntyre · 20 years ago
  68. ff83c2b Fix input() builtin function to respect compiler flags. by Hye-Shik Chang · 20 years ago
  69. b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  70. 77f3c87 Apply map/zip pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  71. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  72. d75ede3 Remove the PendingDeprecationWarning from apply(). apply() will by Fred Drake · 21 years ago
  73. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  74. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  75. a253e18 regressing the performance bugfix -- Guido wants the performance bug left by Alex Martelli · 21 years ago
  76. a2777d3 Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes by Alex Martelli · 21 years ago
  77. 5cf6394 Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 21 years ago
  78. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  79. 364f6be Correct check of PyUnicode_Resize() return value. by Jeremy Hylton · 21 years ago
  80. 1aad9c7 Reflow long lines and reformat. by Jeremy Hylton · 21 years ago
  81. c58a3a1 Fix a crash: when sq_item failed the code continued blindly and used the by Walter Dörwald · 21 years ago
  82. 6897355 Make filter(bool, ...) as fast as filter(None, ...). by Neil Schemenauer · 21 years ago
  83. eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 21 years ago
  84. a9b9c9f some more error-message enhancements by Alex Martelli · 21 years ago
  85. f471d47 complete and clarify some error messages for range() by Alex Martelli · 21 years ago
  86. 41c9f88 fixed a potential refcount bug (thanks Raymond!). by Alex Martelli · 21 years ago
  87. a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 21 years ago
  88. 28e83e3 Some errors from range() should be TypeError, not ValueError. by Guido van Rossum · 21 years ago
  89. 817d6c9 Prompted by Tim's comment, when handle_range_longs() sees an by Guido van Rossum · 21 years ago
  90. 874e1f7 handle_range_longs(): refcount handling is very delicate here, and by Tim Peters · 21 years ago
  91. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 21 years ago
  92. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 21 years ago
  93. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  94. 3e59076 Fix SF bug #690435, apply fails to check if warning raises exception by Neal Norwitz · 21 years ago
  95. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 21 years ago
  96. 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 21 years ago
  97. 2c646c9 Squashed compiler wng about signed/unsigned clash in comparison. by Tim Peters · 21 years ago
  98. 1918f77 Change filterstring() and filterunicode(): If the by Walter Dörwald · 21 years ago
  99. b9b8e9c My previous checkin caused compile() to no longer accept buffers, as noted by Just van Rossum · 21 years ago
  100. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 21 years ago