summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Make test_uuid passed.Guido van Rossum2007-07-092-88/+79
* Make test_tempfile.py work. Make SpooledTempFile work in text and binary mode.Guido van Rossum2007-07-092-5/+22
* Make test_optparse pass.Guido van Rossum2007-07-091-5/+1
* Fix the last remaining problem with test_multibytecodec.py;Guido van Rossum2007-07-091-6/+11
* Two necessary fixes (but not enough to make tests pass):Guido van Rossum2007-07-031-19/+6
* Fix test_types.py (broken due to removal of array.array('c')).Guido van Rossum2007-07-031-1/+1
* Remove a few unicode references accidentally merged in.Guido van Rossum2007-07-031-6/+6
* Fix test_cookie after filter() behavior change.Guido van Rossum2007-07-031-2/+2
* Fix test_struct. A bunch of array and bytes issues.Guido van Rossum2007-07-031-6/+6
* Creating an array with a bytes object as initializerGuido van Rossum2007-07-032-0/+5
* There is no longer a 'c' array typecode.Guido van Rossum2007-07-031-1/+1
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-0343-209/+170
* Fix test_httplib.Martin v. Löwis2007-06-302-9/+10
* Merged revisions 56020-56124 via svnmerge fromGuido van Rossum2007-06-307-17/+44
* Change readbuffer_encode() and charbuffer_encode() toWalter Dörwald2007-06-221-5/+5
* Open files in binary mode.Walter Dörwald2007-06-201-2/+2
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-201-0/+1
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-202-13/+13
* "Fix" the array module test -- by ripping out the 'c' typecode.Guido van Rossum2007-06-181-40/+2
* Fix a buch of shallow test failures.Guido van Rossum2007-06-183-35/+42
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-182-4/+7
* Make sys.path and sys.argv into lists of strings.Guido van Rossum2007-06-151-1/+1
* Fix some problems introduced by the str8 repr change.Guido van Rossum2007-06-152-2/+5
* Modernize the super() call in ABCMeta.__new__() -- I had messed withGuido van Rossum2007-06-141-1/+1
* 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-13104-647/+2185
* 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-131-26/+0
* 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
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-1210-686/+5
* 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
* Some quick fixes of code that was sorting dict.keys() etc.Guido van Rossum2007-06-121-6/+3
* Simplify various spots where: str() is called on somethingWalter Dörwald2007-06-119-89/+48
* Check unicode identifier directly instead of convertingWalter Dörwald2007-06-111-0/+7
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-103-7/+9
* Adapt to new exception message.Walter Dörwald2007-06-091-6/+6
* Fix Cookie.py: Fix example in the docstring (encoded SerialCookies containWalter Dörwald2007-06-081-12/+10
* Rename checks for test_support.have_unicode (we alwaysWalter Dörwald2007-06-087-112/+62
* Fix chr() test (1000000 was accepted on a UCS4 build).Walter Dörwald2007-06-081-1/+1
* Make test_socket work.Guido van Rossum2007-06-081-7/+13
* Just enoug fixes so that test_mailbox fails instead of loops forever.Guido van Rossum2007-06-071-19/+23
* Accellerate binary readline() a bit.Guido van Rossum2007-06-072-8/+26
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-0739-200/+160
* Fix pdb help command.Alexandre Vassalotti2007-06-071-2/+3
* The bufsize argument to Popen() should accept None meaning the default (0).Guido van Rossum2007-06-072-0/+10