1. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  2. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  3. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  4. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  5. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  6. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  7. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  8. c2550c7 Remove chr8, we're not likely to need it at this point by Neal Norwitz · 17 years ago
  9. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  10. 56e4a84 Added test to ensure __format__ methods return unicode objects. by Eric Smith · 17 years ago
  11. a4b8d1d Some changes in preparation of stricter rules about mixing str and bytes. by Guido van Rossum · 17 years ago
  12. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  13. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  14. 15d3d04 Before calling _PyType_Lookup() the type needs to be initialized. by Guido van Rossum · 17 years ago
  15. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  16. ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
  17. 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
  18. 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
  19. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  20. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  21. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  22. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  23. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  24. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  25. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  26. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  27. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  28. e7efd59 Make the name of the C variables match the Python names by Walter Dörwald · 17 years ago
  29. eba7696 Make input9) behave properly with the new I/O library. by Guido van Rossum · 17 years ago
  30. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  31. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  32. 390bd7c Oops. unicode() builtin was still around. by Guido van Rossum · 17 years ago
  33. e108373 It's ok for __hex__ or __oct__ to return unicode. by Guido van Rossum · 17 years ago
  34. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  35. 74302db Get rid of 'file' built-in. Get rid of types.StringType and friends. by Guido van Rossum · 17 years ago
  36. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  37. 7fcf224 Add 8-bit chr() back as chr8(). by Guido van Rossum · 17 years ago
  38. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  39. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  40. 938ef57 Kill unichr() itself. by Guido van Rossum · 17 years ago
  41. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  42. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  43. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  44. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  45. 98f9746 Support marshal.dump(x, f) where f is not a real file. by Guido van Rossum · 17 years ago
  46. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  47. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  48. a88a033 Add raw_input() back, named input(). Revive the old unittests too. by Guido van Rossum · 17 years ago
  49. 257d3d9 Fix leak in the print function. by Georg Brandl · 17 years ago
  50. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  51. 452bf51 Essential changes for print function changes. by Guido van Rossum · 17 years ago
  52. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  53. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  54. 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 18 years ago
  55. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  56. 16f3e03 Check "sep" and "end" for stringness in Print(). by Georg Brandl · 18 years ago
  57. 3434351 Add built-in Print() function. This is PEP 3105 except for the name; by Guido van Rossum · 18 years ago
  58. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  59. b65fb33 SF patch 1546297 (with some tweaks): by Guido van Rossum · 18 years ago
  60. 801f0d7 Make built-in zip() equal to itertools.izip(). by Guido van Rossum · 18 years ago
  61. 93a6692 Make it compile with C89. by Guido van Rossum · 18 years ago
  62. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  63. 89da5d7 Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. by Guido van Rossum · 18 years ago
  64. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  65. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  66. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  67. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago
  68. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  69. d910855 Remove apply() by Neal Norwitz · 18 years ago
  70. 9e2b966 Whoops, input *and* raw_input are slated for removal, and now both are gone. by Neal Norwitz · 18 years ago
  71. 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
  72. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  73. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  74. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  75. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  76. a361bd8 Fix compiler warning (int vs Py_ssize_t mismatch by Neal Norwitz · 18 years ago
  77. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  78. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  79. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  80. 6f0d479 Fix an int/long mismatch identified here: by Neal Norwitz · 19 years ago
  81. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  82. 3a9a3e7 Fix memory leaks by Neal Norwitz · 19 years ago
  83. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  84. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  85. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  86. 71d7e70 Removed a check "if (args != NULL)" which is always True and makes no sense. by Armin Rigo · 19 years ago
  87. 77c85e6 bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. by Georg Brandl · 19 years ago
  88. 99d7e4e Whitespace normalization. by Georg Brandl · 19 years ago
  89. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  90. e35b657 Fix cleanup DECREF logic in builtin_filter function. by Georg Brandl · 19 years ago
  91. 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 19 years ago
  92. 9e635cf Put parentheses around the assignment in the 'while' loop conditional by Brett Cannon · 20 years ago
  93. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  94. 8d494f3 Patch #1015021: Stop claiming that coerce can return None. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  95. fd39ad4 Patch #1005468: Disambiguate "min() or max()" exception string. by Martin v. Löwis · 20 years ago
  96. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  97. 52db519 for some reason, the lack of adherence to Python's C whitespace rules by Michael W. Hudson · 20 years ago
  98. 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 20 years ago
  99. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
  100. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago