1. 9a63470 Make test_tempfile.py work. Make SpooledTempFile work in text and binary mode. by Guido van Rossum · 17 years ago
  2. b4e87e3 Make test_optparse pass. by Guido van Rossum · 17 years ago
  3. a222e4c Fix the last remaining problem with test_multibytecodec.py; by Guido van Rossum · 17 years ago
  4. 1f9f825 Fix test_types.py (broken due to removal of array.array('c')). by Guido van Rossum · 17 years ago
  5. 07d4e78 Remove a few unicode references accidentally merged in. by Guido van Rossum · 17 years ago
  6. 99c0c22 Fix test_struct. A bunch of array and bytes issues. by Guido van Rossum · 17 years ago
  7. 6b826ab Creating an array with a bytes object as initializer by Guido van Rossum · 17 years ago
  8. 166746c There is no longer a 'c' array typecode. by Guido van Rossum · 17 years ago
  9. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  10. dd5a860 Fix test_httplib. by Martin v. Löwis · 17 years ago
  11. 486364b Merged revisions 56020-56124 via svnmerge from by Guido van Rossum · 17 years ago
  12. 2233d27 Change readbuffer_encode() and charbuffer_encode() to return bytes objects. by Walter Dörwald · 17 years ago
  13. 11b41f6 Open files in binary mode. by Walter Dörwald · 17 years ago
  14. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  15. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago
  16. 31f72d7 "Fix" the array module test -- by ripping out the 'c' typecode. by Guido van Rossum · 17 years ago
  17. c43e79f Fix a buch of shallow test failures. by Guido van Rossum · 17 years ago
  18. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  19. 96ca691 Make sys.path and sys.argv into lists of strings. by Guido van Rossum · 17 years ago
  20. aa588c4 Fix some problems introduced by the str8 repr change. by Guido van Rossum · 17 years ago
  21. f903f00 Fix some tests by deleting stuff. by Guido van Rossum · 17 years ago
  22. 67aca9e Following an idea by Ron Adam, make sure keys and values in the by Guido van Rossum · 17 years ago
  23. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  24. ff0ffb3 Make test_tmpfile() pass. (And hence test_os.py as a whole passes.) by Guido van Rossum · 17 years ago
  25. 88e860c Fix bz2_test.py by removing the tests for universal newline mode. by Guido van Rossum · 17 years ago
  26. 2c849f2 Fix test_shlex: Use io.StringIO. by Walter Dörwald · 17 years ago
  27. 42748a8 Rip out all codecs that can't work in a unicode/bytes world: by Walter Dörwald · 17 years ago
  28. 543c09e Duh. Delete the outdated comment too. by Guido van Rossum · 17 years ago
  29. 616c8c1 Seems this test is just fine. It fails because __phello__.spam by Guido van Rossum · 17 years ago
  30. 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 17 years ago
  31. 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 17 years ago
  32. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  33. 38e43c2 Adapt to new exception message. by Walter Dörwald · 17 years ago
  34. 9b77553 Rename checks for test_support.have_unicode (we always by Walter Dörwald · 17 years ago
  35. 0157ebe Fix chr() test (1000000 was accepted on a UCS4 build). by Walter Dörwald · 17 years ago
  36. 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 17 years ago
  37. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  38. 46a05a7 The bufsize argument to Popen() should accept None meaning the default (0). by Guido van Rossum · 17 years ago
  39. 4c271fe Fix test_str.py so that it tests the str8 class. by Walter Dörwald · 17 years ago
  40. a92b446 Fix test_deque.py: Read and write file in text mode, by Walter Dörwald · 17 years ago
  41. 092a225 Fix tests for unicode-internal codec. by Walter Dörwald · 17 years ago
  42. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  43. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  44. 5b1284d Fix gzip.py: Use bytes where 8bit strings have been used formerly. by Walter Dörwald · 17 years ago
  45. 3a77c7a If append mode is specified seek to the end of the file. by Walter Dörwald · 17 years ago
  46. fee1af9 Fix test_codeccallbacks.py: bytes has no % operator. by Walter Dörwald · 17 years ago
  47. 2a0c081 Change sys.intern() so that unicode strings can be by Walter Dörwald · 17 years ago
  48. a7eb93e Simplify socket_repr() by using PyUnicode_FromFormat() by Walter Dörwald · 17 years ago
  49. dc089b6 Fix test_openpty. by Guido van Rossum · 17 years ago
  50. 812d834 Fix test_pty.py. by Walter Dörwald · 17 years ago
  51. c025714 Fix file test. by Walter Dörwald · 17 years ago
  52. 644e149 Get rid of a test for repr() of a file object. by Guido van Rossum · 17 years ago
  53. e625fd5 Make struct tests pass. by Guido van Rossum · 17 years ago
  54. adee45e Merged revisions 55545-55587 via svnmerge from by Guido van Rossum · 17 years ago
  55. 2c94aa5 Fixed array.fromfile(); removed references to PyFileObject in array.tofile(). by Guido van Rossum · 17 years ago
  56. 6c037ba Don't specify an encoding, let open figure out an appropriate one. by Walter Dörwald · 17 years ago
  57. 292aa0d Fix test_set. by Guido van Rossum · 17 years ago
  58. 75d6f1a Fix tset_bytes.py. by Guido van Rossum · 17 years ago
  59. eceb0fb Fix test_exceptions.py: There were still str8 objects by Walter Dörwald · 17 years ago
  60. 9e4dc91 Fix list_test.py::test_print(): Read and write the by Walter Dörwald · 17 years ago
  61. 2565d90 Fix test_funcattrs.py: __name__ attribute must be str8. by Walter Dörwald · 17 years ago
  62. 305b924 Fix test_bool and test_bufio. by Guido van Rossum · 17 years ago
  63. fa0054a Make test_subprocess work. Fix universal newlines in io.py. by Guido van Rossum · 17 years ago
  64. c126e8a Merged revisions 55514-55544 via svnmerge from by Guido van Rossum · 17 years ago
  65. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  66. e3d1d41 Fix datetime and its test. by Guido van Rossum · 17 years ago
  67. 6252e10 Make gdbm and dumbdbm use byte strings. Updated their tests. by Guido van Rossum · 17 years ago
  68. 85d8e42 Fix test_unicodedata.py. by Walter Dörwald · 17 years ago
  69. eab198d Fix testcodec.py and test_charmapcodec.py by Walter Dörwald · 17 years ago
  70. 522a6c6 bz2 uses bytes everywhere (even for the 'newlines' attribute). test_bz2 passes. by Guido van Rossum · 17 years ago
  71. 776152b zlib now uses bytes everywhere, and the test passes. by Guido van Rossum · 17 years ago
  72. dcee3c0 Make test_binhex pass. (Do we really want to support it still?) by Guido van Rossum · 17 years ago
  73. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  74. 0e225aa Make binascii use byte strings everywhere (in and out). by Guido van Rossum · 17 years ago
  75. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  76. c49ebc0 The HTMLCalendar outputs bytes now, so fix the test by Walter Dörwald · 17 years ago
  77. 1f5947b Remove have_unicode checks and merge those tests into the by Walter Dörwald · 17 years ago
  78. 0242705 Remove unused import. by Walter Dörwald · 17 years ago
  79. 4aeaa96 Remove tests for have_unicode. by Walter Dörwald · 17 years ago
  80. d6ca546 Make test_zipfile pass. by Guido van Rossum · 17 years ago
  81. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago
  82. 88effc1 Make test_format.py pass again (error messages have changed). by Walter Dörwald · 17 years ago
  83. 3353a2e Make test_repr.py pass again after repr(range(1)) changed. by Guido van Rossum · 17 years ago
  84. 813b0e5 Make test_inspect pass once again. by Guido van Rossum · 17 years ago
  85. 2a857de Update name of test. by Walter Dörwald · 17 years ago
  86. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  87. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  88. 67d9993 Add a few simple repr tests. by Walter Dörwald · 17 years ago
  89. 94b59bb Use test_support.unlink() instead of os.unlink(). by Guido van Rossum · 17 years ago
  90. 8d9db04 Fix the cleanup so that we're not left with shelftemp.db.* files. by Guido van Rossum · 17 years ago
  91. b5b2270 Make test_socket pass. There was an unchecked error when a Unicode by Guido van Rossum · 17 years ago
  92. 4e618b7 Fix test: u prefixes are gone now. Test 'a' and b'a' instead. by Walter Dörwald · 17 years ago
  93. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  94. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  95. f4cfc8f Make test_codecs work. The CJK codecs now use bytes instead of str8 for by Guido van Rossum · 17 years ago
  96. bbbd4fd Make test_new pass. by Guido van Rossum · 17 years ago
  97. 1a1f61b Make test_locale pass. by Guido van Rossum · 17 years ago
  98. f40e576 Make test__locale pass. Stupid bug in the original code: used 'is' for '=='. by Guido van Rossum · 17 years ago
  99. 583118a Fix tests for string encodings. by Walter Dörwald · 17 years ago
  100. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago