summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02200-18059/+18059
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-2728-81/+68
* Start working on the str/unicode unification.Guido van Rossum2007-04-270-0/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-27386-8916/+16101
* Fix print syntax so this runs using 3.0.Guido van Rossum2007-04-271-9/+9
* fix some markup errorsFred Drake2007-04-264-5/+5
* Allow decorators and return annotations to be used together (fixes SF#1697248)Nick Coghlan2007-04-232-2/+7
* Don't crash when nonlocal is used at module level (fixes SF#1705365)Nick Coghlan2007-04-232-5/+16
* Add a note to this file that it might be out of date and need some care.Neal Norwitz2007-04-211-0/+2
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-2183-426/+496
* Make it compile with C89.Guido van Rossum2007-04-171-1/+2
* If $PYTHONNEWIO is set and nonempty,Guido van Rossum2007-04-171-0/+23
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-1769-2113/+396
* Remove the SlowParser class because it depended on the xmllib moduleNeal Norwitz2007-04-171-30/+11
* Remove the xmllib module that was obsolete.Neal Norwitz2007-04-176-1271/+1
* Remove old string moduleNeal Norwitz2007-04-171-426/+0
* Remove ancient platforms: AIX 3 and Irix 5. (AIX 4 and Irix 6 remain.)Neal Norwitz2007-04-1728-4373/+0
* Instead of pickling the whole decoder, use the new getstate/setstate API.Guido van Rossum2007-04-172-33/+57
* Apply SF patch #1698994: Add getstate() and setstate()Walter Dörwald2007-04-165-31/+249
* Check in the inevitable change to the version number.Guido van Rossum2007-04-161-2/+2
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-1529-1261/+1944
* Oops, don't test for a name attribute here. That's a higher-level feature.Guido van Rossum2007-04-131-1/+0
* Support name and mode attributes on all file types.Guido van Rossum2007-04-133-18/+83
* struct.unpack() allows a bytes string too (if it has the right size).Guido van Rossum2007-04-131-2/+6
* Support marshal.dump(x, f) where f is not a real file.Guido van Rossum2007-04-133-6/+27
* Disallow u"..." + b"..." and b"..." + u"...".Guido van Rossum2007-04-132-1/+4
* Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-135-72/+212
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-126-20/+16
* Clean up trailing whitespace.Guido van Rossum2007-04-121-18/+18
* Fix most XXX remarks.Guido van Rossum2007-04-121-24/+13
* Test closed, mode attribute; don't test __exit__().Guido van Rossum2007-04-121-21/+16
* Make sure that writing an array instance returns the number of bytes,Guido van Rossum2007-04-122-1/+17
* TextIO improvement:Guido van Rossum2007-04-121-3/+5
* Bug #1697782: remove all remaining code that uses types.InstanceType.Georg Brandl2007-04-118-38/+10
* Make array().tofile() work with a new I/O object.Guido van Rossum2007-04-112-6/+30
* Re-enable cleanup code.Guido van Rossum2007-04-111-2/+2
* Speed up next() by disabling snapshot updating then.Guido van Rossum2007-04-112-5/+77
* More efficient implementation of tell(); _read_chunk() doesn't have toGuido van Rossum2007-04-112-34/+35
* Real pickling for bytes.Guido van Rossum2007-04-113-6/+29
* An example of action-at-a-distance: fix the problems I had in test_io.pyGuido van Rossum2007-04-112-12/+14
* Checkpoint so I can continue to work on this at a different box.Guido van Rossum2007-04-112-45/+233
* truncate() returns the new size and position.Guido van Rossum2007-04-103-27/+95
* Skip large file tests on Windowns and OSX.Guido van Rossum2007-04-101-10/+25
* Implement long positioning (Unix only, probably).Guido van Rossum2007-04-103-174/+205
* BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase!Guido van Rossum2007-04-101-3/+2
* More cleanup. Renamed BlockingIO to BlockingIOError.Guido van Rossum2007-04-102-268/+313
* Bytes should never equal unicode.Guido van Rossum2007-04-092-1/+27
* For Make Benefit Glorious Nation of Backwards Compatibility,Guido van Rossum2007-04-092-10/+48
* Make sure that a forked child process exits even if it raises an exception.Guido van Rossum2007-04-091-4/+6
* Fix a place where it's pretty clear that a binary open mode was intended.Guido van Rossum2007-04-091-1/+1