1. 9289bfc Fixed test_dumbdbm by Christian Heimes · 17 years ago
  2. 6ae5d7f Fixed gettext module for Windows. The metadata lines always end in \n and not in os.linesep by Christian Heimes · 17 years ago
  3. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  4. ae404e2 Sort the method lists for str8 and bytes so differences are more apparent. by Guido van Rossum · 17 years ago
  5. 35d02c1 Delete test_str.py. There's not much there I care about, and it is confused by Guido van Rossum · 17 years ago
  6. c12a813 Patch # 1331 by Christian Heimes. by Guido van Rossum · 17 years ago
  7. daa251c Patch # 1302 by Christian Heimes (with some love from me :-). by Guido van Rossum · 17 years ago
  8. 79b79ee Patch # 1323 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  9. 687b9c0 Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), by Guido van Rossum · 17 years ago
  10. edbcc13 Remove a test case which is no longer valid. by Georg Brandl · 17 years ago
  11. 52ddaef Make test_locale pass by removing tests that were designed to handle by Guido van Rossum · 17 years ago
  12. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  13. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 17 years ago
  14. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  15. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  16. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  17. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  18. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  19. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  20. 3b7210d Make it possible to run this test stand-alone. by Guido van Rossum · 17 years ago
  21. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  22. b62e8a8 Two changes that are definitely problem-free and avoid calling print() by Guido van Rossum · 17 years ago
  23. 49f2174 Don't depend on str8.splitlines() in test_chunkcoding(). by Guido van Rossum · 17 years ago
  24. 762d4a4 use a reliable host by Gregory P. Smith · 17 years ago
  25. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  26. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  27. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  28. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  29. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  30. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  31. a00f123 Fix for bug 1148: str/bytes issue in httplib's _safe_read(). by Guido van Rossum · 17 years ago
  32. 894d35e Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() by Guido van Rossum · 17 years ago
  33. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  34. bca5480 Merged revisions 58053-58090 via svnmerge from by Thomas Wouters · 17 years ago
  35. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  36. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  37. c411918 email address update by Gregory P. Smith · 17 years ago
  38. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  39. 4a625c3 Add REPORT_NDIFF option to o test that was hard to debug recently. by Guido van Rossum · 17 years ago
  40. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  41. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  42. aaaef11 Add a test for fail*AlmostEqual, including the new support for complex numbers. by Jeffrey Yasskin · 17 years ago
  43. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  44. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago
  45. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  46. 4cb4e4e Fix segfault discovered by Ron Adam. Not checking for terminating right bracket in "'{0[}'.format(())". Fixed, and tests added. by Eric Smith · 17 years ago
  47. f82d9b5 Patch #1076: Use wide API for registry functions. by Martin v. Löwis · 17 years ago
  48. ba21f61 Fix refleaks in test_with caused by reusing the same exception instance over and over. by Collin Winter · 17 years ago
  49. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  50. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  51. c5a6a30 Restore test_email for a1. It passes completely. by Barry Warsaw · 17 years ago
  52. 7f13e6b string.maketrans() now produces translation tables for bytes.translate() -- wrong module? by Georg Brandl · 17 years ago
  53. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  54. 4afcfb4 Fix test_startfile and remove duplicated test. by Thomas Heller · 17 years ago
  55. 671117a Force test_mailbox and test_old_mailbox into submission. by Guido van Rossum · 17 years ago
  56. 3bcc42a Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. by Eric Smith · 17 years ago
  57. 11fe3e0 Fixed test name. by Eric Smith · 17 years ago
  58. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  59. 812567d Cut test_raise down to size. by Collin Winter · 17 years ago
  60. 74e68c7 Fix test_smtplib by munging asynchat some more. by Thomas Wouters · 17 years ago
  61. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  62. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  63. 582b586 Merged revisions 57772-57777 via svnmerge from by Thomas Wouters · 17 years ago
  64. 185e30c Added format tests. by Eric Smith · 17 years ago
  65. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  66. 234a34a Explicitly use UTF-8 as the encoding for the normalization file. by Martin v. Löwis · 17 years ago
  67. bd315c5 Calling execvp with an empty argument list raises ValueError, but we by Thomas Heller · 17 years ago
  68. 080b2b2 Enable the trunc() test. by Guido van Rossum · 17 years ago
  69. 1daf954 Add numbers.py. I suspect this is an old version, but Jeffrey is out by Guido van Rossum · 17 years ago
  70. 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 17 years ago
  71. 5a23cc5 Two changes (not enough to make the test pass though) having to do with by Guido van Rossum · 17 years ago
  72. a79f125 Stop testing for encoded file names, as Python 3 does not support them, anyway. by Martin v. Löwis · 17 years ago
  73. eaa16f9 Try to fix test_plistlib so it uses bytes consistently in this call by Neal Norwitz · 17 years ago
  74. 9a92310 Write bytes instead of unicode by Neal Norwitz · 17 years ago
  75. 09cff64 Since the filename is encoded, we must add bytes to it. The test by Neal Norwitz · 17 years ago
  76. 2c440a1 Use the new name for the parser module. by Neal Norwitz · 17 years ago
  77. 315d845 Revert revisions 57472, 57474, and 57477 which disabled some tests by Neal Norwitz · 17 years ago
  78. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  79. f7f3deb Andother bytes/str comparison caught by Jeremy's change. by Guido van Rossum · 17 years ago
  80. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  81. 991bf5d Patch # 1050 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  82. da3f228 Convert various string literals to bytes. by Jeremy Hylton · 17 years ago
  83. b4df71f Fix test failures caused by missing/incorrect conversion to bytes. by Jeremy Hylton · 17 years ago
  84. 8136014 Fix up brokenness with hashing, now hashlib is strict in requiring bytes too. by Guido van Rossum · 17 years ago
  85. 04c70ad Fix the one failing test (can't decode twice). by Guido van Rossum · 17 years ago
  86. 9befa93 Fix test_pyclbr -- _https_connection is optional. by Guido van Rossum · 17 years ago
  87. 245b42e Found a different, more direct way to disable ssl support until it's fixed. by Guido van Rossum · 17 years ago
  88. a1c42a9 Make test_cmd_line work with strict str/bytes. by Guido van Rossum · 17 years ago
  89. 83800a6 Fix this test. How could it ever have worked?! by Guido van Rossum · 17 years ago
  90. 022c474 Make test_httplib pass. by Guido van Rossum · 17 years ago
  91. 70d0dda Make test_urllib be strict about str/bytes. by Guido van Rossum · 17 years ago
  92. 7436a06 Disable this test too. by Guido van Rossum · 17 years ago
  93. 47229db Disable test_ssl until ssl.py has been fixed. by Guido van Rossum · 17 years ago
  94. 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 17 years ago
  95. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  96. 3fd22da some test suite cleanup, use tempfile.mkdtemp() in setUp and by Gregory P. Smith · 17 years ago
  97. a280ca75 Conform to strict str/bytes distinction. by Lars Gustäbel · 17 years ago
  98. 6665cef Apply this change from 2.6. Hopefully it doesn't cause a conflict. by Neal Norwitz · 17 years ago
  99. f0c7416 Patch # 1033 by Adam Hupp: by Guido van Rossum · 17 years ago
  100. a1a6852 Make test_cgi pass. I changed the internal file created by make_file() by Guido van Rossum · 17 years ago