1. 64ce505 Make bsddb use bytes as keys and values. Add StringKeys by Martin v. Löwis · 17 years ago
  2. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  3. 77553ab Fix test for new version of urllib that uses HTTPConnection directly. by Jeremy Hylton · 17 years ago
  4. 39b198d Change urllib to use HTTPConnection rather than old HTTP class. by Jeremy Hylton · 17 years ago
  5. f066c1b Make test_tokenize really pass -- don't add extra output. by Guido van Rossum · 17 years ago
  6. cfbbf48 Make test_tokenize pass again: by Guido van Rossum · 17 years ago
  7. 1e2b760 Fix an obvious bug caused by a switch to Unicode. by Guido van Rossum · 17 years ago
  8. 3e18615 Fix test: readline() now returns bytes by Jeremy Hylton · 17 years ago
  9. 66dc8c5 Fix tests that tried to sneak strings through httplib. by Jeremy Hylton · 17 years ago
  10. 04319c7 Make sure LineAndFileWrapper gets bytes() as its first argument. by Jeremy Hylton · 17 years ago
  11. 4e7855d Use BytesIO instead of StringIO. by Jeremy Hylton · 17 years ago
  12. 0ee5eeb Fix several more paths from the SSL code. by Jeremy Hylton · 17 years ago
  13. 6252083 Change read() on SSL socket to return bytes. by Jeremy Hylton · 17 years ago
  14. 97043c3 HTTPResponse should not inherit from io.IOBase. by Jeremy Hylton · 17 years ago
  15. c2de7c0 Get rid of a bogus assert when recv_into() is called with a zero-length by Guido van Rossum · 17 years ago
  16. 4a7fd90 Fix failure do to outlawing complex floordiv/mod. by Guido van Rossum · 17 years ago
  17. ec0c508 Fix an absurdly invasive test. by Jeremy Hylton · 17 years ago
  18. 8fff792 Fix tests to use bytes() where the actual sockets return bytes(). by Jeremy Hylton · 17 years ago
  19. 9648d62 Make test_complex pass again now that floordiv and mod are illegal. by Guido van Rossum · 17 years ago
  20. 5accbdb Make sure socket.close() doesn't interfere with socket.makefile(). by Jeremy Hylton · 17 years ago
  21. d2ef864 Treat HTTP status line as ISO-8859-1 as in httplib module. by Jeremy Hylton · 17 years ago
  22. cf2f419 Hack: Fix some test_urllib2.net tests by getting them access to the by Jeremy Hylton · 17 years ago
  23. fb35f65 A few local changes for consistency of string literals. by Jeremy Hylton · 17 years ago
  24. c0f2d2d SF patch# 1762940 by Joe Gregorio. by Guido van Rossum · 17 years ago
  25. 15863ea SF patch# 1764815 by Paul Colomiets. by Guido van Rossum · 17 years ago
  26. ad8d300 SF patch# 1766592 by Paul Colomiets. Fix test_zipimport. by Guido van Rossum · 17 years ago
  27. 6afaeb7 Convert print statements to function calls in Tools/. by Collin Winter · 17 years ago
  28. e5d0e84 Make consistent use of "" for string literals in new classes. by Jeremy Hylton · 17 years ago
  29. 811fc14 Fix status line parsing for http response. by Jeremy Hylton · 17 years ago
  30. 4737482 Add a default __prepare__() method to 'type', so it can be called by Guido van Rossum · 17 years ago
  31. a9efc8e Remove useless \withsubitem. by Georg Brandl · 17 years ago
  32. b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
  33. a6bcefc When testing all stdlib modules, ignore test_pep263.py which is encoded by Guido van Rossum · 17 years ago
  34. 70d2b89 Tests for @abstractproperty by Jeffrey Yasskin. by Guido van Rossum · 17 years ago
  35. 46334cd Kill div, mod and divmod on complex (already deprecated in 2.x). by Guido van Rossum · 17 years ago
  36. b31339f Add @abstractproperty. by Guido van Rossum · 17 years ago
  37. e78178e Bytes (which are the input for decoding) are mutable now. If a decoding by Walter Dörwald · 17 years ago
  38. 2dbde5e In cases where dealing with base64, do the conversion but then get the ASCII by Brett Cannon · 17 years ago
  39. 96d7e83 Don't try to use a bytes sequence for file paths. Also force equivalency tests by Brett Cannon · 17 years ago
  40. 7a26534 Add a missing "rf.depth = 0;" to marshal_load(). by Guido van Rossum · 17 years ago
  41. 447d33e Implement PEP 3120. by Martin v. Löwis · 17 years ago
  42. 5de17db Testing against a different default encoding is meaningless as the default by Brett Cannon · 17 years ago
  43. d38d078 Expat parser no longer has a returns_unicode attribute since everything is by Brett Cannon · 17 years ago
  44. 48f4cf9 Use BytesIO instead of cStringIO.StringIO. by Martin v. Löwis · 17 years ago
  45. 1bba9db Revert previous checkin. by Martin v. Löwis · 17 years ago
  46. c582bfc Fix quopri to operate consistently on bytes. by Martin v. Löwis · 17 years ago
  47. f3f0c61 Return bytes, not str8. by Martin v. Löwis · 17 years ago
  48. f30bb0e Patch #1762412: Fix test case for struni branch. by Martin v. Löwis · 17 years ago
  49. 3e1f85e Fix the minidom test. by Guido van Rossum · 17 years ago
  50. 3992db8 SF patch# 1759922 by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  51. 624ab7c Make test_sgmllib pass on OSX. Hopefully it still passes everywhere else too. by Guido van Rossum · 17 years ago
  52. 45c85d1 Fix the docstrings for keys(), items(), values() (especially the latter). by Guido van Rossum · 17 years ago
  53. ea83447 SF patch# 1757839 by Alexandre Vassalotti (part 2). by Guido van Rossum · 17 years ago
  54. f7a94e4 SF patch# 1761465 by Jeffrey Yasskin. Fix test_aepack and test_applesingle. by Guido van Rossum · 17 years ago
  55. 67feb09 Delete redundant read() and close() methods from SocketIO class. by Guido van Rossum · 17 years ago
  56. 97a7f1e Don't redirect stdout for test_curses. Kill some dead (commented-out) code. by Guido van Rossum · 17 years ago
  57. e5aeaad Return bytes, not string from read(). Makes test_mmap.py pass. by Guido van Rossum · 17 years ago
  58. 1eb79cf Move xdrlib over to the bytes type. by Brett Cannon · 17 years ago
  59. d24fffe Move shelve over to BytesIO as pickle.(Pickler | Unpickler) expect binary by Brett Cannon · 17 years ago
  60. 2f2fffb Fix two bad type identifiers that caused crashes on OSX (icglue and Nav). by Guido van Rossum · 17 years ago
  61. 3f6dd68 Make the last two curses demos work again -- they were using float by Guido van Rossum · 17 years ago
  62. 6c95da3 ccMake test_curses pass. Can't guarantee I caught every spot. by Guido van Rossum · 17 years ago
  63. 51a883b Make test_wave.py pass. by Guido van Rossum · 17 years ago
  64. f761e10 Make test_tcl.py pass, by accepting unicode strings as variable names. by Guido van Rossum · 17 years ago
  65. 005ebb1 Tweaks to make the codecmaps tests pass again. by Guido van Rossum · 17 years ago
  66. 4ca9471 SF patch# 1759016 by Joe Gregorio, who writes: by Guido van Rossum · 17 years ago
  67. 9e473c2 SF patch# 1758570 by Jeffrey Yasskin, who writes: by Guido van Rossum · 17 years ago
  68. f520c05 Don't use cwnon-ASCII characters in the source; use \ooo escapes. by Guido van Rossum · 17 years ago
  69. 13d7799 Fix import of frozen package submodules to use Unicode. Fixes test_frozen. by Guido van Rossum · 17 years ago
  70. 3698746 Add a command line option to set the -u flag. by Guido van Rossum · 17 years ago
  71. accecdf Don't use a sleep to wait for the server to be ready; this caused by Guido van Rossum · 17 years ago
  72. d745c43 Fix test_largefile by changing some string literals to byte literals. by Collin Winter · 17 years ago
  73. f86f285 Fix test_poplib failures. by Collin Winter · 17 years ago
  74. 33e7a8e Make close() (all versions) ignore IOError from flush(). by Guido van Rossum · 17 years ago
  75. ca73d49 Remove this test; it checked for a single old bug and I don't think that by Guido van Rossum · 17 years ago
  76. f8761c7 Make test_compile not fail. by Guido van Rossum · 17 years ago
  77. b5b652e Drop cPickle from Windows build process. by Martin v. Löwis · 17 years ago
  78. 95c95ce Merged revisions 56483-56491 via svnmerge from by Martin v. Löwis · 17 years ago
  79. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  80. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  81. b972a78 SF patch# 1757683 by Alexandre Vassalotti. Add support for by Guido van Rossum · 17 years ago
  82. d4eda82 SF patch# 1757839 by Alexandre Vassalotti -- make test_mailbox and by Guido van Rossum · 17 years ago
  83. bf4806b SF patch# 1757758 by Alexandre Vassalotti, fixing test_ucn. by Guido van Rossum · 17 years ago
  84. b8b108f Make doctest pass by specifying the right encoding. by Collin Winter · 17 years ago
  85. fb56d8f Fix test_uuid.py. Add a note that this module is thread-unsafe. :-( by Guido van Rossum · 17 years ago
  86. 25d0bd6 Delete failing test that was checking that a slot declaration with by Guido van Rossum · 17 years ago
  87. 3a2e5ce Make audioop and its tests use bytes throughout. by Martin v. Löwis · 17 years ago
  88. b1a9f27 Fix test_doctest: drop u prefixes; explicitly declare by Martin v. Löwis · 17 years ago
  89. 36e0a92 Merged revisions 56443-56466 via svnmerge from by Guido van Rossum · 17 years ago
  90. f66263c Fix test_cookie.py. by Guido van Rossum · 17 years ago
  91. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  92. be6fe54 Make test_datetime.py pass by killing all references to cPickle in it. by Guido van Rossum · 17 years ago
  93. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  94. 00058aa Fix a bug in PyUnicode_FromStringAndSize() with signed characters. by Guido van Rossum · 17 years ago
  95. 814661e Fix test_zipfile.py. (Why was it passing before?) The usual str/bytes issues. by Guido van Rossum · 17 years ago
  96. 697a84b Make test_unicode pass after the lexer was fixed to turn unicode errors by Guido van Rossum · 17 years ago
  97. 7eb6ca5 Make test_parser pass after merge. by Guido van Rossum · 17 years ago
  98. df4a743 Fix test_asyncore after merge. It needs to use bytes. by Guido van Rossum · 17 years ago
  99. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  100. 5ed317d Do the right thing for CYGWIN. by Guido van Rossum · 17 years ago