summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Ensure cleanup does not reference variables that don't yet exist.Neal Norwitz2008-03-241-0/+4
* Skip test if socket gets reset, the problem is on the other side.Neal Norwitz2008-03-241-1/+11
* Merged revisions 61820-61823 via svnmerge fromChristian Heimes2008-03-241-3/+2
* Merged revisions 61825 via svnmerge fromMartin v. Löwis2008-03-246-23/+62
* Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,...Christian Heimes2008-03-239-34/+91
* Fixed parent class initChristian Heimes2008-03-231-1/+1
* Invoke byte-compilation after running 2to3.Martin v. Löwis2008-03-221-2/+13
* unicode->str.Martin v. Löwis2008-03-222-3/+3
* Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,...Christian Heimes2008-03-229-151/+540
* Add build_py_2to3.Martin v. Löwis2008-03-221-0/+24
* Merged revisions 61724-61725 via svnmerge fromMartin v. Löwis2008-03-2214-66/+349
* Merged revisions 61672,61674,61676-61678,61681,61683-61684 via svnmerge fromChristian Heimes2008-03-212-15/+50
* Add __future__ import for print_function. It's a no-op in 3.0, but it needs ...Eric Smith2008-03-202-0/+13
* Added a longish test case to stress seek/tell with a stateful decoder.Ka-Ping Yee2008-03-201-10/+20
* Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 ...Christian Heimes2008-03-208-44/+87
* Clean up the TextIOWrapper code; pick better names; improve documentation.Ka-Ping Yee2008-03-201-123/+121
* This is r61508 plus additional fixes to the handling of 'limit'Ka-Ping Yee2008-03-201-64/+84
* crc32 always returns unsigned. cleanup the code a bit and revert r61648 withGregory P. Smith2008-03-201-2/+2
* Another missing file after merge from trunk.Amaury Forgeot d'Arc2008-03-201-0/+1
* Another 2.6-ism in test fileAmaury Forgeot d'Arc2008-03-201-1/+1
* - Revert a change that should have been blocked: py3k has no -3 flag!Amaury Forgeot d'Arc2008-03-202-27/+8
* Create a signed CRC32 hash. I'm not absolutely sure it's correct. At least it...Christian Heimes2008-03-191-1/+1
* Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,...Christian Heimes2008-03-1911-66/+133
* Fix a WTF noticed by Jerry Seutter.Barry Warsaw2008-03-191-2/+2
* Issue2297: Fix a stack overflow in Windows caused by -v and -vv. When python...Trent Nelson2008-03-191-2/+20
* Run 2to3 on this library.Martin v. Löwis2008-03-1922-194/+196
* Merged revisions 61602 via svnmerge fromMartin v. Löwis2008-03-1924-177/+252
* Merged revisions 61596-61597 via svnmerge fromMartin v. Löwis2008-03-1967-0/+11990
* Add the -n option back to getopt(); it was lost in r61521.Trent Nelson2008-03-191-1/+1
* Blocked 61577, implementation of print function.Eric Smith2008-03-181-5/+25
* - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has beenTrent Nelson2008-03-188-105/+490
* Get this test to pass (UserList/UserDict no longer exist and caused a skip).Neal Norwitz2008-03-181-23/+16
* Get this test to work (it was skipped previously):Neal Norwitz2008-03-181-25/+26
* Fix 're' to work on bytes. It could do with a few more tests, though.Thomas Wouters2008-03-183-34/+22
* Add missing UNPACK_EX opcode.Thomas Wouters2008-03-181-1/+1
* Revert r61508: it caused test_mailbox to fail on all platforms.Neal Norwitz2008-03-182-115/+69
* Merged revisions 61520,61523-61528,61532 via svnmerge fromChristian Heimes2008-03-183-69/+144
* Remove unnused vars that I missed in previous removal of output file generation.Neal Norwitz2008-03-181-2/+0
* Fix a bunch of problems from merges.Neal Norwitz2008-03-181-30/+11
* Added test_print.py. I want to have a test suite when the print function is ...Eric Smith2008-03-181-0/+102
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-1816-856/+717
* In TextIOWrapper:Ka-Ping Yee2008-03-182-69/+115
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-183-111/+369
* - A new pickle protocol (protocol 3) is added with explicit supportGuido van Rossum2008-03-175-55/+153
* Whoops, I missed a few more places that were using slicing from the operator ...Neal Norwitz2008-03-173-39/+2
* Bug #2301: Don't try decoding the source code into the originalMartin v. Löwis2008-03-171-0/+7
* Patch from jbalogh fixes issue #2282 (misnamed seekable() method).Ka-Ping Yee2008-03-172-1/+7
* Document the expected convention for getstate() (as explained to me by Guido).Ka-Ping Yee2008-03-171-1/+3
* zlib.crc32 and zlib.adler32 now return an unsigned value as any sane personGregory P. Smith2008-03-171-0/+8
* Added tests for tokenize, blocked corresponding checkin from trunk.Eric Smith2008-03-171-2/+10