summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 56020-56124 via svnmerge fromGuido van Rossum2007-06-3020-253/+286
* Don't retest failing tests -- it takes too long.Guido van Rossum2007-06-301-2/+2
* Change float.__getformat__() to return a unicode string.Walter Dörwald2007-06-221-3/+3
* Make array.typecode a unicode string.Walter Dörwald2007-06-221-2/+2
* Change readbuffer_encode() and charbuffer_encode() toWalter Dörwald2007-06-222-13/+9
* Silence GCC warning about uninitialzed variable.Walter Dörwald2007-06-201-12/+5
* Make "thread.local" key a unicode object.Walter Dörwald2007-06-201-1/+1
* Open files in binary mode.Walter Dörwald2007-06-201-2/+2
* Make pickle errror message unicode objects.Walter Dörwald2007-06-201-2/+2
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-204-8/+21
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-203-19/+19
* "Fix" the array module test -- by ripping out the 'c' typecode.Guido van Rossum2007-06-182-67/+6
* Fix a buch of shallow test failures.Guido van Rossum2007-06-184-36/+43
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-1818-201/+198
* Make sys.path and sys.argv into lists of strings.Guido van Rossum2007-06-152-7/+7
* Fix some problems introduced by the str8 repr change.Guido van Rossum2007-06-153-2/+9
* Fix a typo in the name of an output file.Guido van Rossum2007-06-151-1/+1
* Patch by Ron Adam to make repr(str8(...)) return something looking likeGuido van Rossum2007-06-151-2/+2
* Modernize the super() call in ABCMeta.__new__() -- I had messed withGuido van Rossum2007-06-141-1/+1
* Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE.Guido van Rossum2007-06-141-2/+2
* Fix another issue likely introduced by the merge.Guido van Rossum2007-06-141-1/+1
* Looks like an oopsie -- I ignored a warning at my peril.Guido van Rossum2007-06-141-1/+2
* Fix some tests by deleting stuff.Guido van Rossum2007-06-144-56/+1
* Somehow this needed adding.Guido van Rossum2007-06-141-0/+179
* Reduce redundant calls to str() in _Environ class.Guido van Rossum2007-06-131-3/+4
* Following an idea by Ron Adam, make sure keys and values in theGuido van Rossum2007-06-132-7/+14
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-13195-1507/+3400
* Shut up compiler warnings.Guido van Rossum2007-06-132-2/+4
* Discard unused function.Guido van Rossum2007-06-131-34/+0
* Make test_tmpfile() pass. (And hence test_os.py as a whole passes.)Guido van Rossum2007-06-131-2/+2
* Fix bz2_test.py by removing the tests for universal newline mode.Guido van Rossum2007-06-132-37/+2
* Make it compile with GCC 2.96.Guido van Rossum2007-06-131-3/+5
* Checkpoint: half-fixed the bz2 module. 'U' is no longer supported.Guido van Rossum2007-06-131-211/+42
* Rip out the file object's implementation.Guido van Rossum2007-06-1214-2536/+105
* unicode is named str now => fix type check.Walter Dörwald2007-06-121-1/+1
* Fix test_shlex: Use io.StringIO.Walter Dörwald2007-06-121-7/+2
* Mention name of left operand, if "foo in unicode_string"Walter Dörwald2007-06-121-2/+3
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-1211-730/+6
* Make module docstrings unicode objects.Walter Dörwald2007-06-121-1/+1
* Revert 55876. Use PyUnicode_AsEncodedString instead.Martin v. Löwis2007-06-122-20/+3
* Duh. Delete the outdated comment too.Guido van Rossum2007-06-121-7/+0
* Seems this test is just fine. It fails because __phello__.spamGuido van Rossum2007-06-121-2/+0
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-128-29/+31
* Update the frozen bytecode for __hello__.Guido van Rossum2007-06-121-3/+3
* Some quick fixes of code that was sorting dict.keys() etc.Guido van Rossum2007-06-121-6/+3
* Remove unused code.Walter Dörwald2007-06-111-4/+0
* Simplify various spots where: str() is called on somethingWalter Dörwald2007-06-119-89/+48
* Add versionadded notes to PyUnicode_FromString(),Walter Dörwald2007-06-111-2/+3
* Document PyUnicode_FromFormat().Walter Dörwald2007-06-111-0/+49
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-113-44/+66