summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* Change normalize_encodings() to avoid using .translate() or depending onGuido van Rossum2007-06-071-14/+11
* Fix libc_ver(): libc_ver() was reading sys.executableWalter Dörwald2007-06-071-2/+2
* Fix test_str.py so that it tests the str8 class.Walter Dörwald2007-06-072-2/+2
* Register a dispatcher for str8. (This makes test_copy.py pass again.)Walter Dörwald2007-06-071-4/+1
* Fix test_deque.py: Read and write file in text mode,Walter Dörwald2007-06-071-2/+2
* Fix tests for unicode-internal codec.Walter Dörwald2007-06-071-13/+13
* tokenizer.c: make coding markup work again.Guido van Rossum2007-06-072-19/+18
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-0653-1909/+501
* Fix gzip.py: Use bytes where 8bit strings have been used formerly.Walter Dörwald2007-06-062-29/+31
* If append mode is specified seek to the end of the file.Walter Dörwald2007-06-061-0/+18
* Fix test_codeccallbacks.py: bytes has no % operator.Walter Dörwald2007-06-061-3/+3
* Change sys.intern() so that unicode strings can beWalter Dörwald2007-06-051-1/+12
* Simplify socket_repr() by using PyUnicode_FromFormat()Walter Dörwald2007-06-051-0/+4
* Add a helper to display the various flags and components of code objectsGuido van Rossum2007-05-301-0/+56
* Fix test_openpty.Guido van Rossum2007-05-301-2/+2
* types.StringType is gone, use str directly instead.Walter Dörwald2007-05-291-1/+4
* Remove debug print.Walter Dörwald2007-05-291-1/+0
* Fix typo.Walter Dörwald2007-05-291-1/+2
* Fix test_pty.py.Walter Dörwald2007-05-291-7/+7
* Fix file test.Walter Dörwald2007-05-291-1/+1
* 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