1. 7f13e6b string.maketrans() now produces translation tables for bytes.translate() -- wrong module? by Georg Brandl · 17 years ago
  2. 226878c Add bytes methods documentation. by Georg Brandl · 17 years ago
  3. 283e35f Mark registry components as 64-bit on Win64. by Martin v. Löwis · 17 years ago
  4. 680d7be Fix a buggy test. str8 objects contained NUL-terminated strings, by Thomas Heller · 17 years ago
  5. 4b49131 Commit #1068: new docs for PEP 3101. Also document the old string formatting as "old", and begin documenting str/unicode unification. by Georg Brandl · 17 years ago
  6. 20594cc round(1e20) wrongly returned 0. This fixes test_builtin on windows. by Thomas Heller · 17 years ago
  7. 57e3b68 Update the first two parts of the reference manual for Py3k, by Georg Brandl · 17 years ago
  8. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  9. 39cf04b Regenerate Lib/symbol.py. by Georg Brandl · 17 years ago
  10. c3f5bad Fix unicode issue in tutorial. by Georg Brandl · 17 years ago
  11. 4afcfb4 Fix test_startfile and remove duplicated test. by Thomas Heller · 17 years ago
  12. 8b7a957 Insert "startfile" into posix_methods again; it was accidentially by Thomas Heller · 17 years ago
  13. fd5359c Fix sphinx-build so that it runs with 2.x and 3.x but refuses to start with 3.x. by Georg Brandl · 17 years ago
  14. 5a16558 Correct a few typos. by Georg Brandl · 17 years ago
  15. 64fd6fb Ugh, hopefully I can get this right. The code is only compiled on Win64 by Neal Norwitz · 17 years ago
  16. b879f57 Try to fix the problem of passing a non-int on Win64 right this time. by Neal Norwitz · 17 years ago
  17. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  18. 538d17a Try to fix a problem with large values on Win64. Diagnosed by Thomas Heller by Neal Norwitz · 17 years ago
  19. 671117a Force test_mailbox and test_old_mailbox into submission. by Guido van Rossum · 17 years ago
  20. c2550c7 Remove chr8, we're not likely to need it at this point by Neal Norwitz · 17 years ago
  21. 7cec252 1. Don't encode input strings to bytes. 2. Re-enable stderr redirection. by Kurt B. Kaiser · 17 years ago
  22. 639a8ff Thomas removed all the SLICE op codes by Neal Norwitz · 17 years ago
  23. 71d4a34 Customary 2nd submit of this file after it's been changed. by Guido van Rossum · 17 years ago
  24. e0906d1 A few more fixes to the tutorial by Neal Norwitz · 17 years ago
  25. 7aa02e6 More email package fixes. by Barry Warsaw · 17 years ago
  26. 0616b79 Tutorial update for 3.0 by Paul Dubois. by Guido van Rossum · 17 years ago
  27. 8b2af27 More email package fixes. by Barry Warsaw · 17 years ago
  28. 00b3422 More email package fixes. by Barry Warsaw · 17 years ago
  29. 3bcc42a Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. by Eric Smith · 17 years ago
  30. 11fe3e0 Fixed test name. by Eric Smith · 17 years ago
  31. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  32. 231ff0e Fix a compile error on Windows. by Collin Winter · 17 years ago
  33. 812567d Cut test_raise down to size. by Collin Winter · 17 years ago
  34. 32347fb Update import.c's MAGIC value for the new raise syntax (as opposed to merely updating the comment). by Collin Winter · 17 years ago
  35. 7576583 Minor tweaks. by Guido van Rossum · 17 years ago
  36. b197f3c First draft of a what's new document. by Guido van Rossum · 17 years ago
  37. 6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). by Guido van Rossum · 17 years ago
  38. 74e68c7 Fix test_smtplib by munging asynchat some more. by Thomas Wouters · 17 years ago
  39. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  40. 150b7d7 Remove curses temp file consistently. by Guido van Rossum · 17 years ago
  41. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  42. 582b586 Merged revisions 57772-57777 via svnmerge from by Thomas Wouters · 17 years ago
  43. 185e30c Added format tests. by Eric Smith · 17 years ago
  44. bc3b345 IDLE's py3k NEWS by Kurt B. Kaiser · 17 years ago
  45. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  46. cf1be88 Add some miscellanea. by Guido van Rossum · 17 years ago
  47. 2c7f314 Fix a typo and a trailing space. by Kurt B. Kaiser · 17 years ago
  48. 623d372 Don't ascii encode eol_convention. Was causing file write to fail. by Kurt B. Kaiser · 17 years ago
  49. 234a34a Explicitly use UTF-8 as the encoding for the normalization file. by Martin v. Löwis · 17 years ago
  50. 5495957 Bump IDLE version. by Kurt B. Kaiser · 17 years ago
  51. e5e8eff Add a note about the openssl dependency. Switch to '*' bullets for easier by Guido van Rossum · 17 years ago
  52. 8c57104 More email package fixes. by Barry Warsaw · 17 years ago
  53. b13c493 Fix more lingering print statements. by Collin Winter · 17 years ago
  54. fd51975 Fix a typo in the distutils cleanup. by Collin Winter · 17 years ago
  55. 845702c Small updates. by Guido van Rossum · 17 years ago
  56. e7bf59f Run 2to3's print fixer over some places that had been missed. by Collin Winter · 17 years ago
  57. 716c3ac Add 3.0 to the silly list in license.rst too, and update the Doc README. by Georg Brandl · 17 years ago
  58. f4780d0 Fix #1753395. by Georg Brandl · 17 years ago
  59. 47cc2a0 Bug #1746880: Correctly install DLLs into system32 folder on Win64. by Martin v. Löwis · 17 years ago
  60. 4902e69 More raise statement normalization. by Collin Winter · 17 years ago
  61. 6cd2a20 Kill more lingering string exceptions in Lib/plat-mac/. by Collin Winter · 17 years ago
  62. b9678e7 1/0 -> True/False cleanup. by Collin Winter · 17 years ago
  63. bd315c5 Calling execvp with an empty argument list raises ValueError, but we by Thomas Heller · 17 years ago
  64. 080b2b2 Enable the trunc() test. by Guido van Rossum · 17 years ago
  65. 1daf954 Add numbers.py. I suspect this is an old version, but Jeffrey is out by Guido van Rossum · 17 years ago
  66. 3cd6537 Fix a lingering string exception. by Collin Winter · 17 years ago
  67. bf2604c Fix typo by Neal Norwitz · 17 years ago
  68. b365c15 Add 2.6 and 3.0 to the silly list. by Guido van Rossum · 17 years ago
  69. 0cfc8bd Update patch level to 3.0a1. We're close enough. by Guido van Rossum · 17 years ago
  70. 4405cf3 Update Misc/NEWS. Add RELNOTES. by Guido van Rossum · 17 years ago
  71. 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 17 years ago
  72. 8a7c866 Move definition of TZNAME_ENCODING further up. by Martin v. Löwis · 17 years ago
  73. 2b65c75 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
  74. a651d3d Rewrap line. by Walter Dörwald · 17 years ago
  75. 4c6c7ca Port to Python 3.0. by Martin v. Löwis · 17 years ago
  76. 945362c Implement PYTHONNOERRORWINDOW. by Martin v. Löwis · 17 years ago
  77. ef0f129 Move the copyright and license stuff to the end. by Guido van Rossum · 17 years ago
  78. 3bb0070 Explicitly convert tzname to Unicode. Fixes #1040. by Martin v. Löwis · 17 years ago
  79. 2cc1f6d More email package related repairs. This fixes smtplib's import and use of by Barry Warsaw · 17 years ago
  80. 5a23cc5 Two changes (not enough to make the test pass though) having to do with by Guido van Rossum · 17 years ago
  81. d24fdbc Use s# instead of t# for nis_match. by Martin v. Löwis · 17 years ago
  82. a79f125 Stop testing for encoded file names, as Python 3 does not support them, anyway. by Martin v. Löwis · 17 years ago
  83. eaa16f9 Try to fix test_plistlib so it uses bytes consistently in this call by Neal Norwitz · 17 years ago
  84. 152b3c2 Use inspect.py and clean up. by Kurt B. Kaiser · 17 years ago
  85. f40080f Try to fix test_aepack by comparing bytes with bytes. by Neal Norwitz · 17 years ago
  86. 9a92310 Write bytes instead of unicode by Neal Norwitz · 17 years ago
  87. 78a70bd Try to get test_pep352 and maybe test_platform to work on a Windows buildbot by Neal Norwitz · 17 years ago
  88. 09cff64 Since the filename is encoded, we must add bytes to it. The test by Neal Norwitz · 17 years ago
  89. f739991 Add uuids for 3.0. by Martin v. Löwis · 17 years ago
  90. 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 17 years ago
  91. ff0940f Bump version numbers. by Martin v. Löwis · 17 years ago
  92. cabac0a Stop using the find function on the string module, use the string method. by Neal Norwitz · 17 years ago
  93. 0c3842f Forward Windows build instructions to PCbuild. by Martin v. Löwis · 17 years ago
  94. c247e51 Make this module importable, this gets test___all__ to pass. by Neal Norwitz · 17 years ago
  95. 5b7e9d7 General cleanup, raise normalization in Lib/distutils. by Collin Winter · 17 years ago
  96. a73bfee Raise statement normalization in Lib/ctypes/. by Collin Winter · 17 years ago
  97. 9604e66 Oops. I copied a slightly older version of the email package from the sandbox. by Guido van Rossum · 17 years ago
  98. 2c440a1 Use the new name for the parser module. by Neal Norwitz · 17 years ago
  99. 315d845 Revert revisions 57472, 57474, and 57477 which disabled some tests by Neal Norwitz · 17 years ago
  100. 8b3d659 Fix a more bytes/str confusion. by Barry Warsaw · 17 years ago