summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Make test_subprocess work. Fix universal newlines in io.py.Guido van Rossum2007-05-243-39/+31
* Merged revisions 55514-55544 via svnmerge fromGuido van Rossum2007-05-242-2/+2
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-247-1552/+59
* Refactor to avoid ultra-deeply-nested code.Guido van Rossum2007-05-231-36/+53
* Fix datetime and its test.Guido van Rossum2007-05-232-9/+23
* Add a format character %S to PyUnicode_FromFormat() thatWalter Dörwald2007-05-231-7/+22
* Make gdbm and dumbdbm use byte strings. Updated their tests.Guido van Rossum2007-05-237-61/+68
* Simplify append_keyword_tzinfo() by usingWalter Dörwald2007-05-231-10/+2
* Fix test_unicodedata.py.Walter Dörwald2007-05-231-1/+1
* Fix testcodec.py and test_charmapcodec.pyWalter Dörwald2007-05-232-16/+16
* This is how I run the tests.Guido van Rossum2007-05-231-0/+55
* bz2 uses bytes everywhere (even for the 'newlines' attribute).Guido van Rossum2007-05-222-82/+118
* zlib now uses bytes everywhere, and the test passes.Guido van Rossum2007-05-222-78/+104
* 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-225-235/+271
* Make binascii use byte strings everywhere (in and out).Guido van Rossum2007-05-222-89/+116
* obcheckin.Guido van Rossum2007-05-221-2/+2
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-22102-4561/+1948
* 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
* The unicode builtin is gone now. Fix setup.py so thatWalter Dörwald2007-05-221-19/+6
* Make test_zipfile pass.Guido van Rossum2007-05-224-146/+177
* linecache.py was still struggling with unicode vs. non-unicode.Guido van Rossum2007-05-221-2/+3
* Oops. unicode() builtin was still around.Guido van Rossum2007-05-221-1/+0
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-215-516/+200
* 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-213-7/+4
* repr(range(10)) now returns 'range(0, 10)' for clarity.Walter Dörwald2007-05-212-11/+4
* Remove unused variables.Walter Dörwald2007-05-202-2/+1
* Add a few simple repr tests.Walter Dörwald2007-05-201-0/+5
* Change range_repr() to use %R for the start/stop/step attributes.Walter Dörwald2007-05-201-30/+6
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-1912-149/+125
* 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-182-24/+24
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-1849-255/+385
* Add missing #define.Walter Dörwald2007-05-181-0/+1
* 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-186-113/+376
* Revert last checkin: _PyUnicode_New() allocates spaceWalter Dörwald2007-05-181-1/+1
* Allocate one more character, so that the terminatingWalter Dörwald2007-05-181-1/+1
* 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-1710-1227/+1225