1. 1bd2122 Silence compiler warning. by Guido van Rossum · 17 years ago
  2. 3f42908 Make hmac use bytes. Make test_hmac pass. by Guido van Rossum · 17 years ago
  3. f895307 Make sure hexdigest() returns str, not str8. by Guido van Rossum · 17 years ago
  4. dc12288 Make test_genericpath pass. by Guido van Rossum · 17 years ago
  5. 98f1375 Make test_posixpath.py pass. by Guido van Rossum · 17 years ago
  6. 469734b Set closed flag *after* calling flush(). by Guido van Rossum · 17 years ago
  7. 47f17d0 Make test_marshal pass. There was a bizarre recursion limit exceeded error, by Guido van Rossum · 17 years ago
  8. d10b2dc Be even more lenient when catching errors from readlines(). by Guido van Rossum · 17 years ago
  9. 4b5386f Add proper tests for closed files to various I/O operations, by Guido van Rossum · 17 years ago
  10. 2b6a97e Add the function/method name to assertRaises. by Guido van Rossum · 17 years ago
  11. a098294 Make test_urllib.py pass. Mostly str/bytes issues. by Guido van Rossum · 17 years ago
  12. 6718062 Fix test_socket.py. Simple str/bytes issue with IPV6 addresse. by Guido van Rossum · 17 years ago
  13. 7165cb1 Made test_file pass. This meant adding support for read(-1) and read() by Guido van Rossum · 17 years ago
  14. e8432ac Upon exit, flush stdout and stderr (twice: before and after the code that by Guido van Rossum · 17 years ago
  15. 5ed033b Change hashlib to return bytes from digest() instead of str8. by Guido van Rossum · 17 years ago
  16. 867bcbc Forgot to submit this earlier; it's needed to make test_threading pass. by Guido van Rossum · 17 years ago
  17. 65b6a80 Make test_uuid passed. by Guido van Rossum · 17 years ago
  18. 5e23d57 Changes to ctypes and Mac toolbox glue that fix test_threading and test_platform. by Guido van Rossum · 17 years ago
  19. 9a63470 Make test_tempfile.py work. Make SpooledTempFile work in text and binary mode. by Guido van Rossum · 17 years ago
  20. b4e87e3 Make test_optparse pass. by Guido van Rossum · 17 years ago
  21. a222e4c Fix the last remaining problem with test_multibytecodec.py; by Guido van Rossum · 17 years ago
  22. 89687b9 Two necessary fixes (but not enough to make tests pass): by Guido van Rossum · 17 years ago
  23. 1f9f825 Fix test_types.py (broken due to removal of array.array('c')). by Guido van Rossum · 17 years ago
  24. 1718fd1 Fix the code for stripping the leading 's' from str8 and bytes literals. by Guido van Rossum · 17 years ago
  25. 07d4e78 Remove a few unicode references accidentally merged in. by Guido van Rossum · 17 years ago
  26. 0c41e88 Fix test_cookie after filter() behavior change. by Guido van Rossum · 17 years ago
  27. 99c0c22 Fix test_struct. A bunch of array and bytes issues. by Guido van Rossum · 17 years ago
  28. 6b826ab Creating an array with a bytes object as initializer by Guido van Rossum · 17 years ago
  29. 166746c There is no longer a 'c' array typecode. by Guido van Rossum · 17 years ago
  30. a1cdfd9 Fix a subtle bug in PyString_Repr(). by Guido van Rossum · 17 years ago
  31. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  32. d094130 Revert r56044 (which changed the %c format specifier to accept a by Walter Dörwald · 17 years ago
  33. 8934fc2 Fix a failure that was only apparent on big-endian machines: by Guido van Rossum · 17 years ago
  34. dd5a860 Fix test_httplib. by Martin v. Löwis · 17 years ago
  35. 486364b Merged revisions 56020-56124 via svnmerge from by Guido van Rossum · 17 years ago
  36. 8ddff70 Don't retest failing tests -- it takes too long. by Guido van Rossum · 17 years ago
  37. 7104458 Change float.__getformat__() to return a unicode string. by Walter Dörwald · 17 years ago
  38. 93b30b5 Make array.typecode a unicode string. by Walter Dörwald · 17 years ago
  39. 2233d27 Change readbuffer_encode() and charbuffer_encode() to return bytes objects. by Walter Dörwald · 17 years ago
  40. 63a28be Silence GCC warning about uninitialzed variable. by Walter Dörwald · 17 years ago
  41. 4ee631e Make "thread.local" key a unicode object. by Walter Dörwald · 17 years ago
  42. 11b41f6 Open files in binary mode. by Walter Dörwald · 17 years ago
  43. 38e6a69 Make pickle errror message unicode objects. by Walter Dörwald · 17 years ago
  44. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  45. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago
  46. 31f72d7 "Fix" the array module test -- by ripping out the 'c' typecode. by Guido van Rossum · 17 years ago
  47. c43e79f Fix a buch of shallow test failures. by Guido van Rossum · 17 years ago
  48. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  49. 96ca691 Make sys.path and sys.argv into lists of strings. by Guido van Rossum · 17 years ago
  50. aa588c4 Fix some problems introduced by the str8 repr change. by Guido van Rossum · 17 years ago
  51. a092947 Fix a typo in the name of an output file. by Guido van Rossum · 17 years ago
  52. 7611d1d Patch by Ron Adam to make repr(str8(...)) return something looking like by Guido van Rossum · 17 years ago
  53. bb5f590 Modernize the super() call in ABCMeta.__new__() -- I had messed with by Guido van Rossum · 17 years ago
  54. 2d28f59 Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. by Guido van Rossum · 17 years ago
  55. 27ff74d Fix another issue likely introduced by the merge. by Guido van Rossum · 17 years ago
  56. bdbb395 Looks like an oopsie -- I ignored a warning at my peril. by Guido van Rossum · 17 years ago
  57. f903f00 Fix some tests by deleting stuff. by Guido van Rossum · 17 years ago
  58. 8518bdc Somehow this needed adding. by Guido van Rossum · 17 years ago
  59. f5b4685 Reduce redundant calls to str() in _Environ class. by Guido van Rossum · 17 years ago
  60. 67aca9e Following an idea by Ron Adam, make sure keys and values in the by Guido van Rossum · 17 years ago
  61. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  62. 6374bb5 Shut up compiler warnings. by Guido van Rossum · 17 years ago
  63. fa33163 Discard unused function. by Guido van Rossum · 17 years ago
  64. ff0ffb3 Make test_tmpfile() pass. (And hence test_os.py as a whole passes.) by Guido van Rossum · 17 years ago
  65. 88e860c Fix bz2_test.py by removing the tests for universal newline mode. by Guido van Rossum · 17 years ago
  66. 755114a Make it compile with GCC 2.96. by Guido van Rossum · 17 years ago
  67. f09ca14 Checkpoint: half-fixed the bz2 module. 'U' is no longer supported. by Guido van Rossum · 17 years ago
  68. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  69. 2d5c219 unicode is named str now => fix type check. by Walter Dörwald · 17 years ago
  70. 2c849f2 Fix test_shlex: Use io.StringIO. by Walter Dörwald · 17 years ago
  71. 26e0f51 Mention name of left operand, if "foo in unicode_string" fails. by Walter Dörwald · 17 years ago
  72. 42748a8 Rip out all codecs that can't work in a unicode/bytes world: by Walter Dörwald · 17 years ago
  73. 6e8fcae Make module docstrings unicode objects. by Walter Dörwald · 17 years ago
  74. 427dbff Revert 55876. Use PyUnicode_AsEncodedString instead. by Martin v. Löwis · 17 years ago
  75. 543c09e Duh. Delete the outdated comment too. by Guido van Rossum · 17 years ago
  76. 616c8c1 Seems this test is just fine. It fails because __phello__.spam by Guido van Rossum · 17 years ago
  77. 5397039 Minimal changes to make the "freeze" tool work again. by Guido van Rossum · 17 years ago
  78. 0aa35f8 Update the frozen bytecode for __hello__. by Guido van Rossum · 17 years ago
  79. d59cde8 Some quick fixes of code that was sorting dict.keys() etc. by Guido van Rossum · 17 years ago
  80. 1a0270f Remove unused code. by Walter Dörwald · 17 years ago
  81. 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 17 years ago
  82. 80bfb72 Add versionadded notes to PyUnicode_FromString(), by Walter Dörwald · 17 years ago
  83. c0aa45f Document PyUnicode_FromFormat(). by Walter Dörwald · 17 years ago
  84. d7fb764 Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, by Walter Dörwald · 17 years ago
  85. 3ef72bb Fix PyErr_Format() call (missing exception class). by Walter Dörwald · 17 years ago
  86. e42109d Use PyErr_Format() directly instead of PyOS_snprintf()+PyErr_SetString(). by Walter Dörwald · 17 years ago
  87. 4ddbdad Simplify error formatting. Fix error message in check_unoptimized(). by Walter Dörwald · 17 years ago
  88. 5d4ede1 Simplify ste_repr(). by Walter Dörwald · 17 years ago
  89. 7516360 Simplify error formatting and type_repr(). by Walter Dörwald · 17 years ago
  90. d376dd9 Simplify error formatting. by Walter Dörwald · 17 years ago
  91. a29d1d7 Simplify error formatting (no default encoding required). by Walter Dörwald · 17 years ago
  92. 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 17 years ago
  93. 4dbd01b __module__ is a unicode string now: by Walter Dörwald · 17 years ago
  94. 641d5cc Short-cut lookup of utf-8 codec, to make import work on OSX. by Martin v. Löwis · 17 years ago
  95. 9b9905b Expect unicode in class_name. by Martin v. Löwis · 17 years ago
  96. 826b9dd Fix getclassname. Fixes test_descrtut. by Martin v. Löwis · 17 years ago
  97. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  98. 38e43c2 Adapt to new exception message. by Walter Dörwald · 17 years ago
  99. 3f1e65c Fix Cookie.py: Fix example in the docstring (encoded SerialCookies contain by Walter Dörwald · 17 years ago
  100. 9b77553 Rename checks for test_support.have_unicode (we always by Walter Dörwald · 17 years ago