1. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  2. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  3. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  4. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  5. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  6. a00f123 Fix for bug 1148: str/bytes issue in httplib's _safe_read(). by Guido van Rossum · 17 years ago
  7. 894d35e Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() by Guido van Rossum · 17 years ago
  8. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  9. bca5480 Merged revisions 58053-58090 via svnmerge from by Thomas Wouters · 17 years ago
  10. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  11. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  12. c411918 email address update by Gregory P. Smith · 17 years ago
  13. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  14. 4a625c3 Add REPORT_NDIFF option to o test that was hard to debug recently. by Guido van Rossum · 17 years ago
  15. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  16. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  17. aaaef11 Add a test for fail*AlmostEqual, including the new support for complex numbers. by Jeffrey Yasskin · 17 years ago
  18. 3da4c4b Use an event variable to wait for the server to be ready, not time.sleep(). by Guido van Rossum · 17 years ago
  19. fd4a7de Fix doctest failure introduced by r57949. by Guido van Rossum · 17 years ago
  20. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  21. 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
  22. f82d9b5 Patch #1076: Use wide API for registry functions. by Martin v. Löwis · 17 years ago
  23. ba21f61 Fix refleaks in test_with caused by reusing the same exception instance over and over. by Collin Winter · 17 years ago
  24. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  25. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  26. c5a6a30 Restore test_email for a1. It passes completely. by Barry Warsaw · 17 years ago
  27. 7f13e6b string.maketrans() now produces translation tables for bytes.translate() -- wrong module? by Georg Brandl · 17 years ago
  28. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  29. 4afcfb4 Fix test_startfile and remove duplicated test. by Thomas Heller · 17 years ago
  30. 671117a Force test_mailbox and test_old_mailbox into submission. by Guido van Rossum · 17 years ago
  31. 3bcc42a Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. by Eric Smith · 17 years ago
  32. 11fe3e0 Fixed test name. by Eric Smith · 17 years ago
  33. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  34. 812567d Cut test_raise down to size. by Collin Winter · 17 years ago
  35. 74e68c7 Fix test_smtplib by munging asynchat some more. by Thomas Wouters · 17 years ago
  36. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  37. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  38. 582b586 Merged revisions 57772-57777 via svnmerge from by Thomas Wouters · 17 years ago
  39. 185e30c Added format tests. by Eric Smith · 17 years ago
  40. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  41. 234a34a Explicitly use UTF-8 as the encoding for the normalization file. by Martin v. Löwis · 17 years ago
  42. bd315c5 Calling execvp with an empty argument list raises ValueError, but we by Thomas Heller · 17 years ago
  43. 080b2b2 Enable the trunc() test. by Guido van Rossum · 17 years ago
  44. 1daf954 Add numbers.py. I suspect this is an old version, but Jeffrey is out by Guido van Rossum · 17 years ago
  45. 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 17 years ago
  46. 5a23cc5 Two changes (not enough to make the test pass though) having to do with by Guido van Rossum · 17 years ago
  47. a79f125 Stop testing for encoded file names, as Python 3 does not support them, anyway. by Martin v. Löwis · 17 years ago
  48. eaa16f9 Try to fix test_plistlib so it uses bytes consistently in this call by Neal Norwitz · 17 years ago
  49. 9a92310 Write bytes instead of unicode by Neal Norwitz · 17 years ago
  50. 09cff64 Since the filename is encoded, we must add bytes to it. The test by Neal Norwitz · 17 years ago
  51. 2c440a1 Use the new name for the parser module. by Neal Norwitz · 17 years ago
  52. 315d845 Revert revisions 57472, 57474, and 57477 which disabled some tests by Neal Norwitz · 17 years ago
  53. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  54. f7f3deb Andother bytes/str comparison caught by Jeremy's change. by Guido van Rossum · 17 years ago
  55. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  56. 991bf5d Patch # 1050 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  57. da3f228 Convert various string literals to bytes. by Jeremy Hylton · 17 years ago
  58. b4df71f Fix test failures caused by missing/incorrect conversion to bytes. by Jeremy Hylton · 17 years ago
  59. 8136014 Fix up brokenness with hashing, now hashlib is strict in requiring bytes too. by Guido van Rossum · 17 years ago
  60. 04c70ad Fix the one failing test (can't decode twice). by Guido van Rossum · 17 years ago
  61. 9befa93 Fix test_pyclbr -- _https_connection is optional. by Guido van Rossum · 17 years ago
  62. 245b42e Found a different, more direct way to disable ssl support until it's fixed. by Guido van Rossum · 17 years ago
  63. a1c42a9 Make test_cmd_line work with strict str/bytes. by Guido van Rossum · 17 years ago
  64. 83800a6 Fix this test. How could it ever have worked?! by Guido van Rossum · 17 years ago
  65. 022c474 Make test_httplib pass. by Guido van Rossum · 17 years ago
  66. 70d0dda Make test_urllib be strict about str/bytes. by Guido van Rossum · 17 years ago
  67. 7436a06 Disable this test too. by Guido van Rossum · 17 years ago
  68. 47229db Disable test_ssl until ssl.py has been fixed. by Guido van Rossum · 17 years ago
  69. 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 17 years ago
  70. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  71. 3fd22da some test suite cleanup, use tempfile.mkdtemp() in setUp and by Gregory P. Smith · 17 years ago
  72. a280ca75 Conform to strict str/bytes distinction. by Lars Gustäbel · 17 years ago
  73. 6665cef Apply this change from 2.6. Hopefully it doesn't cause a conflict. by Neal Norwitz · 17 years ago
  74. f0c7416 Patch # 1033 by Adam Hupp: by Guido van Rossum · 17 years ago
  75. a1a6852 Make test_cgi pass. I changed the internal file created by make_file() by Guido van Rossum · 17 years ago
  76. 7b4beea Make dumbdbm use bytes for keys consistently. by Guido van Rossum · 17 years ago
  77. bb839ef More str/bytes goodness. by Guido van Rossum · 17 years ago
  78. ec42ffd More str/bytes strictness. by Guido van Rossum · 17 years ago
  79. 199fc75 str/bytes strictness. by Guido van Rossum · 17 years ago
  80. b644fb4 str/bytes strictness. by Guido van Rossum · 17 years ago
  81. 7dcb844 More str/bytes strictness. by Guido van Rossum · 17 years ago
  82. 26d95c3 More str/bytes fixes. by Guido van Rossum · 17 years ago
  83. e22905a More changes needed to make things work once bytes and str are truly divorced. by Guido van Rossum · 17 years ago
  84. 54a40cb Force test_xmlrpc to pass. I'm not happy with how I did this, but I don't by Guido van Rossum · 17 years ago
  85. 98b349f Fix some tests I broke. (More to follow.) by Guido van Rossum · 17 years ago
  86. 1f2ca56 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  87. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  88. 739e2ad Additional test for formatting code. by Eric Smith · 17 years ago
  89. 9c62772 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  90. 700bd92 Fix a few places that broke due to a recent change to io.py. by Guido van Rossum · 17 years ago
  91. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  92. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  93. 85825dc Changes preparing for stricter enforcement of bytes vs. str. by Guido van Rossum · 17 years ago
  94. 19b4a27 Cosmetics in error messages. by Guido van Rossum · 17 years ago
  95. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  96. 2bf4d5b Use the correct variable name by Neal Norwitz · 17 years ago
  97. e760631 When elapsed and expected time differ, at least show their two values. by Guido van Rossum · 17 years ago
  98. 93c5682 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  99. 7e95bef Use unicode and stop supporting str8 by Neal Norwitz · 17 years ago
  100. 0337ef6 Get test working when there are multiple dbs supported. by Neal Norwitz · 17 years ago