summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-13195-1507/+3400
* Shut up compiler warnings.Guido van Rossum2007-06-132-2/+4
* Discard unused function.Guido van Rossum2007-06-131-34/+0
* 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-132-37/+2
* Make it compile with GCC 2.96.Guido van Rossum2007-06-131-3/+5
* Checkpoint: half-fixed the bz2 module. 'U' is no longer supported.Guido van Rossum2007-06-131-211/+42
* Rip out the file object's implementation.Guido van Rossum2007-06-1214-2536/+105
* 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
* Mention name of left operand, if "foo in unicode_string"Walter Dörwald2007-06-121-2/+3
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-1211-730/+6
* Make module docstrings unicode objects.Walter Dörwald2007-06-121-1/+1
* Revert 55876. Use PyUnicode_AsEncodedString instead.Martin v. Löwis2007-06-122-20/+3
* 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
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-128-29/+31
* Update the frozen bytecode for __hello__.Guido van Rossum2007-06-121-3/+3
* Some quick fixes of code that was sorting dict.keys() etc.Guido van Rossum2007-06-121-6/+3
* Remove unused code.Walter Dörwald2007-06-111-4/+0
* Simplify various spots where: str() is called on somethingWalter Dörwald2007-06-119-89/+48
* Add versionadded notes to PyUnicode_FromString(),Walter Dörwald2007-06-111-2/+3
* Document PyUnicode_FromFormat().Walter Dörwald2007-06-111-0/+49
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-113-44/+66
* Fix PyErr_Format() call (missing exception class).Walter Dörwald2007-06-111-3/+2
* Use PyErr_Format() directly instead ofWalter Dörwald2007-06-111-5/+3
* Simplify error formatting. Fix error message inWalter Dörwald2007-06-111-12/+12
* Simplify ste_repr().Walter Dörwald2007-06-111-7/+3
* Simplify error formatting and type_repr().Walter Dörwald2007-06-111-8/+4
* Simplify error formatting.Walter Dörwald2007-06-111-10/+10
* Simplify error formatting (no default encoding required).Walter Dörwald2007-06-111-3/+2
* Check unicode identifier directly instead of convertingWalter Dörwald2007-06-112-4/+11
* __module__ is a unicode string now:Walter Dörwald2007-06-111-5/+2
* Short-cut lookup of utf-8 codec, to make import workMartin v. Löwis2007-06-111-0/+17
* Expect unicode in class_name.Martin v. Löwis2007-06-101-3/+3
* Fix getclassname. Fixes test_descrtut.Martin v. Löwis2007-06-101-2/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-1040-289/+462
* 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-082-8/+14
* 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-0740-202/+161
* 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
* Change most sys attributes that were str8 objects into str objectsWalter Dörwald2007-06-071-7/+7