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