summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Make test__locale pass. Stupid bug in the original code: used 'is' for '=='.Guido van Rossum2007-05-171-1/+1
* Fix tests for string encodings.Walter Dörwald2007-05-171-2/+2
* Merged revisions 55342-55406 via svnmerge fromGuido van Rossum2007-05-1727-4666/+71
* Fix io.StringIO for wide Python builds.Walter Dörwald2007-05-161-6/+11
* Fix io.StringIO: String are stored encoded (using "unicode-internal" as theWalter Dörwald2007-05-162-19/+33
* Make test_subprocess pass. The subprocess module now reads and writesGuido van Rossum2007-05-152-27/+16
* Make test_sys pass.Guido van Rossum2007-05-152-6/+5
* Make test_strop pass. (But shouldn't we kill strop?)Guido van Rossum2007-05-151-1/+1
* Make test_re pass.Guido van Rossum2007-05-151-14/+2
* It's ok for __hex__ or __oct__ to return unicode.Guido van Rossum2007-05-151-2/+1
* Make test_fileio.py work.Guido van Rossum2007-05-151-1/+1
* Make test_str.py pass.Guido van Rossum2007-05-153-17/+15
* Make tset_float pass. float(<unicode>) was never very good -- it usedGuido van Rossum2007-05-151-9/+9
* Fix the picklevalue test; it broke due to the change in default protocol.Guido van Rossum2007-05-151-9/+15
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-1536-645/+107
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-1436-528/+364
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-1437-7985/+29
* Fix string test (was testing str twice).Walter Dörwald2007-05-121-1/+1
* There's no longer a u prefix for unicode objectsWalter Dörwald2007-05-111-6/+6
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-1113-640/+162
* Enhance the punycode decoder so that it can decodeWalter Dörwald2007-05-113-130/+136
* Fix the array tests. Only a minor change to the C code was required.Guido van Rossum2007-05-101-16/+12
* Use io.BytesIO instead of StringIO.StringIO in allWalter Dörwald2007-05-101-16/+16
* Merged revisions 55184-55224 via svnmerge fromGuido van Rossum2007-05-101-1/+8
* Fix punycode codec and tests.Walter Dörwald2007-05-102-43/+43
* Don't insist on cStringIO.Guido van Rossum2007-05-091-19/+20
* Don't insist on cStringIO.Guido van Rossum2007-05-091-2/+2
* Fix code depending on exception unpacking.Guido van Rossum2007-05-091-1/+1
* Don't insist on cStringIO.Guido van Rossum2007-05-091-1/+1
* Add to an XXX comment.Guido van Rossum2007-05-091-1/+2
* Random modifications that slightly improve the chances of this not blowing up.Guido van Rossum2007-05-091-11/+10
* Support PEP-263-style coding declarations.Guido van Rossum2007-05-091-0/+11
* I don't know how come bytes.join() was a class method, but that's clearlyGuido van Rossum2007-05-091-5/+6
* Fix trivial bug in idna encoding.Guido van Rossum2007-05-091-1/+0
* test_codeccallbacks.py passes again.Walter Dörwald2007-05-091-97/+110
* Make test_marshal pass. Not my best work. :-(Guido van Rossum2007-05-091-5/+5
* Make the StringIO test pass.Guido van Rossum2007-05-081-21/+25
* Got test_pickletools and test_pickle working.Guido van Rossum2007-05-084-145/+165
* Given that ord() of a bytes object of length 1 is defined, it shouldGuido van Rossum2007-05-082-0/+14
* Fix a few places where a str instead of a bytes object was used.Guido van Rossum2007-05-082-5/+5
* repr(b"\0") should return b"\x00", not the (unusual) b"\0".Guido van Rossum2007-05-081-2/+3
* Kill u"..." string quotes. Thought I already did that.Guido van Rossum2007-05-081-2/+2
* Got test_exceptions.py working.Guido van Rossum2007-05-082-18/+21
* Get rid of 'file' built-in. Get rid of types.StringType and friends.Guido van Rossum2007-05-082-14/+0
* Checkpoint. A b it closer to working pickles and pickletools.Guido van Rossum2007-05-072-4/+8
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-07116-667/+655
* Add two more space tests.Walter Dörwald2007-05-051-0/+2
* Remove duplicate tests.Walter Dörwald2007-05-051-24/+4
* Fix %c overflow test.Walter Dörwald2007-05-051-1/+1
* test_unicode.py passes again 9except for problemsWalter Dörwald2007-05-052-119/+68