summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bz2 uses bytes everywhere (even for the 'newlines' attribute).Guido van Rossum2007-05-221-16/+16
* zlib now uses bytes everywhere, and the test passes.Guido van Rossum2007-05-221-42/+42
* Make test_binhex pass. (Do we really want to support it still?)Guido van Rossum2007-05-222-31/+26
* Make test_base64 pass.Guido van Rossum2007-05-223-228/+255
* Make binascii use byte strings everywhere (in and out).Guido van Rossum2007-05-221-42/+45
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-2252-1076/+341
* There's no need to default file to sys.stdout -- print(file=None) alreadyGuido van Rossum2007-05-221-2/+0
* The HTMLCalendar outputs bytes now, so fix the testWalter Dörwald2007-05-221-2/+4
* Remove have_unicode checks and merge those tests into theWalter Dörwald2007-05-227-200/+61
* Remove unused import.Walter Dörwald2007-05-221-1/+1
* Remove tests for have_unicode.Walter Dörwald2007-05-221-7/+4
* Make test_zipfile pass.Guido van Rossum2007-05-223-140/+141
* linecache.py was still struggling with unicode vs. non-unicode.Guido van Rossum2007-05-221-2/+3
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-214-360/+148
* Make test_format.py pass again (error messages have changed).Walter Dörwald2007-05-211-22/+6
* Make test_repr.py pass again after repr(range(1)) changed.Guido van Rossum2007-05-211-1/+1
* Make test_inspect pass once again.Guido van Rossum2007-05-212-2/+3
* Update name of test.Walter Dörwald2007-05-211-1/+1
* Rename test_xrange.py to test_range.py and fix theWalter Dörwald2007-05-211-2/+2
* repr(range(10)) now returns 'range(0, 10)' for clarity.Walter Dörwald2007-05-211-1/+1
* Add a few simple repr tests.Walter Dörwald2007-05-201-0/+5
* Use test_support.unlink() instead of os.unlink().Guido van Rossum2007-05-181-4/+3
* Fix the cleanup so that we're not left with shelftemp.db.* files.Guido van Rossum2007-05-181-12/+10
* Make test_socket pass. There was an unchecked error when a UnicodeGuido van Rossum2007-05-181-23/+22
* Fix test: u prefixes are gone now. Test 'a' and b'a' instead.Walter Dörwald2007-05-181-2/+1
* Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald2007-05-181-39/+39
* Change some uses of cStringIO.StringIO to io.StringIO.Guido van Rossum2007-05-1819-89/+26
* Protect abs__file__() from changes to sys.modules while it's running.Guido van Rossum2007-05-181-1/+1
* Make all the multibyte codec tests pass.Guido van Rossum2007-05-179-1221/+1206
* Make test_codecs work. The CJK codecs now use bytes instead of str8 forGuido van Rossum2007-05-171-5/+5
* Make test_new pass.Guido van Rossum2007-05-171-1/+1
* Make test_locale pass.Guido van Rossum2007-05-171-0/+1
* 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