1. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  2. ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
  3. 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
  4. d5a5f5d Patch #1774414: make it possible to use SVK to develop Python. by Collin Winter · 17 years ago
  5. 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
  6. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  7. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  8. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  9. 3eed765 Bug #1772489: make dir() work on traceback objects again. by Collin Winter · 17 years ago
  10. ee634a4 Get rid of traceback.c:tb_getattr in favor of marking the members as READONLY. by Collin Winter · 17 years ago
  11. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  12. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  13. 2614e1d Remove obsolete ifdef. by Martin v. Löwis · 17 years ago
  14. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  15. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  16. 9edcc2e Handle error by Neal Norwitz · 17 years ago
  17. c76a250 Merged revisions 56782-56847 via svnmerge from by Guido van Rossum · 17 years ago
  18. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  19. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  20. ad8d300 SF patch# 1766592 by Paul Colomiets. Fix test_zipimport. by Guido van Rossum · 17 years ago
  21. 7a26534 Add a missing "rf.depth = 0;" to marshal_load(). by Guido van Rossum · 17 years ago
  22. 447d33e Implement PEP 3120. by Martin v. Löwis · 17 years ago
  23. f7a94e4 SF patch# 1761465 by Jeffrey Yasskin. Fix test_aepack and test_applesingle. by Guido van Rossum · 17 years ago
  24. 13d7799 Fix import of frozen package submodules to use Unicode. Fixes test_frozen. by Guido van Rossum · 17 years ago
  25. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  26. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  27. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  28. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  29. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  30. c3e7ffc obcheckin. by Guido van Rossum · 17 years ago
  31. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  32. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  33. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  34. 1bd2122 Silence compiler warning. by Guido van Rossum · 17 years ago
  35. a098294 Make test_urllib.py pass. Mostly str/bytes issues. by Guido van Rossum · 17 years ago
  36. e8432ac Upon exit, flush stdout and stderr (twice: before and after the code that by Guido van Rossum · 17 years ago
  37. 5e23d57 Changes to ctypes and Mac toolbox glue that fix test_threading and test_platform. by Guido van Rossum · 17 years ago
  38. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  39. d094130 Revert r56044 (which changed the %c format specifier to accept a by Walter Dörwald · 17 years ago
  40. 486364b Merged revisions 56020-56124 via svnmerge from by Guido van Rossum · 17 years ago
  41. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  42. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  43. 96ca691 Make sys.path and sys.argv into lists of strings. by Guido van Rossum · 17 years ago
  44. bdbb395 Looks like an oopsie -- I ignored a warning at my peril. by Guido van Rossum · 17 years ago
  45. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  46. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  47. 6e8fcae Make module docstrings unicode objects. by Walter Dörwald · 17 years ago
  48. 427dbff Revert 55876. Use PyUnicode_AsEncodedString instead. by Martin v. Löwis · 17 years ago
  49. 5397039 Minimal changes to make the "freeze" tool work again. by Guido van Rossum · 17 years ago
  50. 0aa35f8 Update the frozen bytecode for __hello__. by Guido van Rossum · 17 years ago
  51. 3ef72bb Fix PyErr_Format() call (missing exception class). by Walter Dörwald · 17 years ago
  52. e42109d Use PyErr_Format() directly instead of PyOS_snprintf()+PyErr_SetString(). by Walter Dörwald · 17 years ago
  53. 4ddbdad Simplify error formatting. Fix error message in check_unoptimized(). by Walter Dörwald · 17 years ago
  54. 5d4ede1 Simplify ste_repr(). by Walter Dörwald · 17 years ago
  55. 641d5cc Short-cut lookup of utf-8 codec, to make import work on OSX. by Martin v. Löwis · 17 years ago
  56. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  57. 94093ff Change most sys attributes that were str8 objects into str objects by Walter Dörwald · 17 years ago
  58. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  59. 2a0c081 Change sys.intern() so that unicode strings can be by Walter Dörwald · 17 years ago
  60. 360b01a Change getdefaultencoding() and getfilesystemencoding() by Walter Dörwald · 17 years ago
  61. e7efd59 Make the name of the C variables match the Python names by Walter Dörwald · 17 years ago
  62. eba7696 Make input9) behave properly with the new I/O library. by Guido van Rossum · 17 years ago
  63. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  64. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  65. 6dd15d3 obcheckin. by Guido van Rossum · 17 years ago
  66. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  67. 390bd7c Oops. unicode() builtin was still around. by Guido van Rossum · 17 years ago
  68. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  69. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  70. e108373 It's ok for __hex__ or __oct__ to return unicode. by Guido van Rossum · 17 years ago
  71. 514a0f2 Obsubmit. by Guido van Rossum · 17 years ago
  72. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  73. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  74. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  75. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  76. bdde011 Remove support for u"..." literals. by Guido van Rossum · 17 years ago
  77. d70539a Be more robust around bytes for e[st]#? formats. by Guido van Rossum · 17 years ago
  78. 6262cc7 More uniform approach to getting (UTF8) bytes out of a string. by Guido van Rossum · 17 years ago
  79. e6d3904 Make test_marshal pass. Not my best work. :-( by Guido van Rossum · 17 years ago
  80. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  81. 74302db Get rid of 'file' built-in. Get rid of types.StringType and friends. by Guido van Rossum · 17 years ago
  82. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 17 years ago
  83. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  84. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  85. 7fcf224 Add 8-bit chr() back as chr8(). by Guido van Rossum · 17 years ago
  86. 09dc34f Compare and hash unicode objects like their UTF-8 representations. by Guido van Rossum · 17 years ago
  87. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  88. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  89. 938ef57 Kill unichr() itself. by Guido van Rossum · 17 years ago
  90. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  91. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  92. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  93. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 17 years ago
  94. 4138bfe Don't crash when nonlocal is used at module level (fixes SF#1705365) by Nick Coghlan · 17 years ago
  95. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  96. 4d2adcc Make it compile with C89. by Guido van Rossum · 17 years ago
  97. 8981ad0 Check in the inevitable change to the version number. by Guido van Rossum · 17 years ago
  98. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  99. 98f9746 Support marshal.dump(x, f) where f is not a real file. by Guido van Rossum · 17 years ago
  100. 42dae6a Make readonly members defined in C throw an AttributeError on modification. This brings them into sync with Python-level attributes. Fixes bug #1687163. by Collin Winter · 17 years ago