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