- 93b30b5 Make array.typecode a unicode string. by Walter Dörwald · 18 years ago
- 2233d27 Change readbuffer_encode() and charbuffer_encode() to return bytes objects. by Walter Dörwald · 18 years ago
- 63a28be Silence GCC warning about uninitialzed variable. by Walter Dörwald · 18 years ago
- 4ee631e Make "thread.local" key a unicode object. by Walter Dörwald · 18 years ago
- 11b41f6 Open files in binary mode. by Walter Dörwald · 18 years ago
- 38e6a69 Make pickle errror message unicode objects. by Walter Dörwald · 18 years ago
- bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 18 years ago
- 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 18 years ago
- 31f72d7 "Fix" the array module test -- by ripping out the 'c' typecode. by Guido van Rossum · 18 years ago
- c43e79f Fix a buch of shallow test failures. by Guido van Rossum · 18 years ago
- 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 18 years ago
- 96ca691 Make sys.path and sys.argv into lists of strings. by Guido van Rossum · 18 years ago
- aa588c4 Fix some problems introduced by the str8 repr change. by Guido van Rossum · 18 years ago
- a092947 Fix a typo in the name of an output file. by Guido van Rossum · 18 years ago
- 7611d1d Patch by Ron Adam to make repr(str8(...)) return something looking like by Guido van Rossum · 18 years ago
- bb5f590 Modernize the super() call in ABCMeta.__new__() -- I had messed with by Guido van Rossum · 18 years ago
- 2d28f59 Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. by Guido van Rossum · 18 years ago
- 27ff74d Fix another issue likely introduced by the merge. by Guido van Rossum · 18 years ago
- bdbb395 Looks like an oopsie -- I ignored a warning at my peril. by Guido van Rossum · 18 years ago
- f903f00 Fix some tests by deleting stuff. by Guido van Rossum · 18 years ago
- 8518bdc Somehow this needed adding. by Guido van Rossum · 18 years ago
- f5b4685 Reduce redundant calls to str() in _Environ class. by Guido van Rossum · 18 years ago
- 67aca9e Following an idea by Ron Adam, make sure keys and values in the by Guido van Rossum · 18 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 18 years ago
- 6374bb5 Shut up compiler warnings. by Guido van Rossum · 18 years ago
- fa33163 Discard unused function. by Guido van Rossum · 18 years ago
- ff0ffb3 Make test_tmpfile() pass. (And hence test_os.py as a whole passes.) by Guido van Rossum · 18 years ago
- 88e860c Fix bz2_test.py by removing the tests for universal newline mode. by Guido van Rossum · 18 years ago
- 755114a Make it compile with GCC 2.96. by Guido van Rossum · 18 years ago
- f09ca14 Checkpoint: half-fixed the bz2 module. 'U' is no longer supported. by Guido van Rossum · 18 years ago
- da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 18 years ago
- 2d5c219 unicode is named str now => fix type check. by Walter Dörwald · 18 years ago
- 2c849f2 Fix test_shlex: Use io.StringIO. by Walter Dörwald · 18 years ago
- 26e0f51 Mention name of left operand, if "foo in unicode_string" fails. by Walter Dörwald · 18 years ago
- 42748a8 Rip out all codecs that can't work in a unicode/bytes world: by Walter Dörwald · 18 years ago
- 6e8fcae Make module docstrings unicode objects. by Walter Dörwald · 18 years ago
- 427dbff Revert 55876. Use PyUnicode_AsEncodedString instead. by Martin v. Löwis · 18 years ago
- 543c09e Duh. Delete the outdated comment too. by Guido van Rossum · 18 years ago
- 616c8c1 Seems this test is just fine. It fails because __phello__.spam by Guido van Rossum · 18 years ago
- 5397039 Minimal changes to make the "freeze" tool work again. by Guido van Rossum · 18 years ago
- 0aa35f8 Update the frozen bytecode for __hello__. by Guido van Rossum · 18 years ago
- d59cde8 Some quick fixes of code that was sorting dict.keys() etc. by Guido van Rossum · 18 years ago
- 1a0270f Remove unused code. by Walter Dörwald · 18 years ago
- 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 18 years ago
- 80bfb72 Add versionadded notes to PyUnicode_FromString(), by Walter Dörwald · 18 years ago
- c0aa45f Document PyUnicode_FromFormat(). by Walter Dörwald · 18 years ago
- d7fb764 Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, by Walter Dörwald · 18 years ago
- 3ef72bb Fix PyErr_Format() call (missing exception class). by Walter Dörwald · 18 years ago
- e42109d Use PyErr_Format() directly instead of PyOS_snprintf()+PyErr_SetString(). by Walter Dörwald · 18 years ago
- 4ddbdad Simplify error formatting. Fix error message in check_unoptimized(). by Walter Dörwald · 18 years ago
- 5d4ede1 Simplify ste_repr(). by Walter Dörwald · 18 years ago
- 7516360 Simplify error formatting and type_repr(). by Walter Dörwald · 18 years ago
- d376dd9 Simplify error formatting. by Walter Dörwald · 18 years ago
- a29d1d7 Simplify error formatting (no default encoding required). by Walter Dörwald · 18 years ago
- 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 18 years ago
- 4dbd01b __module__ is a unicode string now: by Walter Dörwald · 18 years ago
- 641d5cc Short-cut lookup of utf-8 codec, to make import work on OSX. by Martin v. Löwis · 18 years ago
- 9b9905b Expect unicode in class_name. by Martin v. Löwis · 18 years ago
- 826b9dd Fix getclassname. Fixes test_descrtut. by Martin v. Löwis · 18 years ago
- 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 18 years ago
- 38e43c2 Adapt to new exception message. by Walter Dörwald · 18 years ago
- 3f1e65c Fix Cookie.py: Fix example in the docstring (encoded SerialCookies contain by Walter Dörwald · 18 years ago
- 9b77553 Rename checks for test_support.have_unicode (we always by Walter Dörwald · 18 years ago
- 0157ebe Fix chr() test (1000000 was accepted on a UCS4 build). by Walter Dörwald · 18 years ago
- 2bf7138 Make test_socket work. Don't exclude test_socket from the tests to run. by Guido van Rossum · 18 years ago
- 7cad4f3 Just enoug fixes so that test_mailbox fails instead of loops forever. by Guido van Rossum · 18 years ago
- 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 18 years ago
- 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 18 years ago
- 7b955bd Fix pdb help command. by Alexandre Vassalotti · 18 years ago
- 46a05a7 The bufsize argument to Popen() should accept None meaning the default (0). by Guido van Rossum · 18 years ago
- ad5b9de Change normalize_encodings() to avoid using .translate() or depending on by Guido van Rossum · 18 years ago
- c3b6ac7 Fix libc_ver(): libc_ver() was reading sys.executable by Walter Dörwald · 18 years ago
- 94093ff Change most sys attributes that were str8 objects into str objects by Walter Dörwald · 18 years ago
- 3d1d712 Don't lie in error messages from str8. by Guido van Rossum · 18 years ago
- 4c271fe Fix test_str.py so that it tests the str8 class. by Walter Dörwald · 18 years ago
- 756f139 Register a dispatcher for str8. (This makes test_copy.py pass again.) by Walter Dörwald · 18 years ago
- a92b446 Fix test_deque.py: Read and write file in text mode, by Walter Dörwald · 18 years ago
- 092a225 Fix tests for unicode-internal codec. by Walter Dörwald · 18 years ago
- 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 18 years ago
- e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 18 years ago
- 0e41148 Use O_APPEND flag instead of seeking, when append mode is specified. by Walter Dörwald · 18 years ago
- 5b1284d Fix gzip.py: Use bytes where 8bit strings have been used formerly. by Walter Dörwald · 18 years ago
- 3a77c7a If append mode is specified seek to the end of the file. by Walter Dörwald · 18 years ago
- fee1af9 Fix test_codeccallbacks.py: bytes has no % operator. by Walter Dörwald · 18 years ago
- 933daed Use PyUnicode_FromFormat() directly. by Walter Dörwald · 18 years ago
- 2a0c081 Change sys.intern() so that unicode strings can be by Walter Dörwald · 18 years ago
- 360b01a Change getdefaultencoding() and getfilesystemencoding() by Walter Dörwald · 18 years ago
- e7efd59 Make the name of the C variables match the Python names by Walter Dörwald · 18 years ago
- b41bb79 unichr() is named chr() now => fix name in error message. by Walter Dörwald · 18 years ago
- 233ccf2 Change int_oct() and int_hex() to return unicode objects. by Walter Dörwald · 18 years ago
- 5b0443c Use PyUnicode_FromFormat() directly in zipimporter_repr(). by Walter Dörwald · 18 years ago
- 4254e76 Change category(), bidirectional(), east_asian_width(), by Walter Dörwald · 18 years ago
- 0bbd8ab Simplify os_init() implementations by using PyErr_Format() by Walter Dörwald · 18 years ago
- 9cb0802 Remove unused variable. by Walter Dörwald · 18 years ago
- a7eb93e Simplify socket_repr() by using PyUnicode_FromFormat() by Walter Dörwald · 18 years ago
- 787b03b PyUnicode_FromFormat() does support %02x, so use it by Walter Dörwald · 18 years ago
- cf47af4 Change time.strftime() to return a unicode string. by Walter Dörwald · 18 years ago
- baf853c Change timedelta.__str__() to return a unicode object. by Walter Dörwald · 18 years ago
- bafa137 Change isoformat() methods to return unicode strings. by Walter Dörwald · 18 years ago
- 4af32b3 Change format_ctime() to return unicode (i.e. by Walter Dörwald · 18 years ago