summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Get rid of a test for repr() of a file object.Guido van Rossum2007-05-271-8/+0
* Make the binhex test pass on Darwin.Guido van Rossum2007-05-271-4/+4
* Remove use of types.StringType.Guido van Rossum2007-05-271-5/+3
* Use input(), not our own fake raw input (in one place).Guido van Rossum2007-05-271-6/+1
* Make struct tests pass.Guido van Rossum2007-05-272-23/+35
* Make xmlrpclib fail less (test_sundry passes).Guido van Rossum2007-05-271-30/+19
* Add isatty() to TextIOWrapper.Guido van Rossum2007-05-271-0/+3
* Minimal fixes to save the bootstrap on OSX.Guido van Rossum2007-05-252-4/+5
* Merged revisions 55545-55587 via svnmerge fromGuido van Rossum2007-05-251-0/+75
* This is the last time I fix binhex. If it breaks again it goes in the dustbin.Guido van Rossum2007-05-241-10/+8
* Fixed array.fromfile(); removed references to PyFileObject in array.tofile().Guido van Rossum2007-05-241-7/+1
* Don't specify an encoding, let open figure out anWalter Dörwald2007-05-241-2/+2
* Fix test_set.Guido van Rossum2007-05-241-4/+4
* Add an encoding property to TextIOBase instances.Guido van Rossum2007-05-242-3/+12
* Fix tset_bytes.py.Guido van Rossum2007-05-241-4/+4
* Fix test_exceptions.py: There were still str8 objectsWalter Dörwald2007-05-241-5/+5
* Fix list_test.py::test_print(): Read and write theWalter Dörwald2007-05-241-2/+2
* Fix test_funcattrs.py: __name__ attribute must be str8.Walter Dörwald2007-05-241-2/+2
* Fix test_bool and test_bufio.Guido van Rossum2007-05-242-7/+7
* Enable new I/O. Disable creation of old files.Guido van Rossum2007-05-241-7/+1
* 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-241-1/+1
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-245-8/+53
* Fix datetime and its test.Guido van Rossum2007-05-231-1/+2
* Make gdbm and dumbdbm use byte strings. Updated their tests.Guido van Rossum2007-05-236-51/+54
* Fix test_unicodedata.py.Walter Dörwald2007-05-231-1/+1
* Fix testcodec.py and test_charmapcodec.pyWalter Dörwald2007-05-232-16/+16
* 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