1. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  2. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  3. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  4. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  5. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  6. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  7. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  8. d11ae5d Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. by Georg Brandl · 16 years ago
  9. eca20b6 Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-63152,63155-63165,63167-63176,63181-63186,63188-63189 via svnmerge from by Alexandre Vassalotti · 16 years ago
  10. aaa6392 Fix nits in builtin next(). by Georg Brandl · 16 years ago
  11. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  12. 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 16 years ago
  13. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  14. a6c6037 Issues 2186 and 2187. Move map() from itertools to builtins. by Raymond Hettinger · 16 years ago
  15. 17301e9 Issue 2186 and 2187. Move filter from itertools to builtins. by Raymond Hettinger · 16 years ago
  16. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  17. cd5da7d Make print docstring consistent with its docs. by Georg Brandl · 16 years ago
  18. 400adb0 Merged revisions 60475-60479,60481-60488 via svnmerge from by Christian Heimes · 16 years ago
  19. 70b64fc Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted(). by Raymond Hettinger · 16 years ago
  20. fe82e77 Merged revisions 60379-60382 via svnmerge from by Christian Heimes · 16 years ago
  21. bbffeb6 Merged revisions 60210-60233 via svnmerge from by Christian Heimes · 16 years ago
  22. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 16 years ago
  23. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 17 years ago
  24. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  25. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  26. 94b7d3d Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to Joseph for the fix by Christian Heimes · 17 years ago
  27. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  28. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  29. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  30. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  31. 91c7730 Fixed bug in input() which broke pdb by Christian Heimes · 17 years ago
  32. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  33. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  34. fef9bba Another #1415 fix for Windows GUI apps by Christian Heimes · 17 years ago
  35. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  36. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  37. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  38. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  39. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  40. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  41. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  42. c2550c7 Remove chr8, we're not likely to need it at this point by Neal Norwitz · 17 years ago
  43. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  44. 56e4a84 Added test to ensure __format__ methods return unicode objects. by Eric Smith · 17 years ago
  45. a4b8d1d Some changes in preparation of stricter rules about mixing str and bytes. by Guido van Rossum · 17 years ago
  46. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  47. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  48. 15d3d04 Before calling _PyType_Lookup() the type needs to be initialized. by Guido van Rossum · 17 years ago
  49. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  50. ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
  51. 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
  52. 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
  53. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  54. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  55. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  56. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  57. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  58. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  59. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  60. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  61. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  62. e7efd59 Make the name of the C variables match the Python names by Walter Dörwald · 17 years ago
  63. eba7696 Make input9) behave properly with the new I/O library. by Guido van Rossum · 17 years ago
  64. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  65. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  66. 390bd7c Oops. unicode() builtin was still around. by Guido van Rossum · 17 years ago
  67. e108373 It's ok for __hex__ or __oct__ to return unicode. by Guido van Rossum · 17 years ago
  68. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  69. 74302db Get rid of 'file' built-in. Get rid of types.StringType and friends. by Guido van Rossum · 17 years ago
  70. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  71. 7fcf224 Add 8-bit chr() back as chr8(). by Guido van Rossum · 17 years ago
  72. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  73. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  74. 938ef57 Kill unichr() itself. by Guido van Rossum · 17 years ago
  75. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  76. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  77. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  78. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  79. 98f9746 Support marshal.dump(x, f) where f is not a real file. by Guido van Rossum · 17 years ago
  80. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  81. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  82. a88a033 Add raw_input() back, named input(). Revive the old unittests too. by Guido van Rossum · 17 years ago
  83. 257d3d9 Fix leak in the print function. by Georg Brandl · 17 years ago
  84. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  85. 452bf51 Essential changes for print function changes. by Guido van Rossum · 17 years ago
  86. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  87. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  88. 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 18 years ago
  89. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  90. 16f3e03 Check "sep" and "end" for stringness in Print(). by Georg Brandl · 18 years ago
  91. 3434351 Add built-in Print() function. This is PEP 3105 except for the name; by Guido van Rossum · 18 years ago
  92. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  93. b65fb33 SF patch 1546297 (with some tweaks): by Guido van Rossum · 18 years ago
  94. 801f0d7 Make built-in zip() equal to itertools.izip(). by Guido van Rossum · 18 years ago
  95. 93a6692 Make it compile with C89. by Guido van Rossum · 18 years ago
  96. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  97. 89da5d7 Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. by Guido van Rossum · 18 years ago
  98. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  99. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  100. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago