| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,... | Christian Heimes | 2008-03-19 | 26 | -215/+277 |
|
|
* | Fix a WTF noticed by Jerry Seutter. | Barry Warsaw | 2008-03-19 | 1 | -2/+2 |
|
|
* | Issue2297: Fix a stack overflow in Windows caused by -v and -vv. When python... | Trent Nelson | 2008-03-19 | 2 | -5/+37 |
|
|
* | Run 2to3 on this library. | Martin v. Löwis | 2008-03-19 | 22 | -194/+196 |
|
|
* | Merged revisions 61602 via svnmerge from | Martin v. Löwis | 2008-03-19 | 24 | -177/+252 |
|
|
* | Merged revisions 61596-61597 via svnmerge from | Martin v. Löwis | 2008-03-19 | 67 | -0/+11990 |
|
|
* | Blocked -r61590 -r61585: tests from __future__ print_function. | Eric Smith | 2008-03-19 | 0 | -0/+0 |
|
|
* | Blocked revision which added zip, filter, map to future_builtins. | David Wolever | 2008-03-19 | 0 | -0/+0 |
|
|
* | Add the -n option back to getopt(); it was lost in r61521. | Trent Nelson | 2008-03-19 | 1 | -1/+1 |
|
|
* | Blocked 61577, implementation of print function. | Eric Smith | 2008-03-18 | 2 | -5/+26 |
|
|
* | - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been | Trent Nelson | 2008-03-18 | 16 | -183/+610 |
|
|
* | Block revision 61570. | Brett Cannon | 2008-03-18 | 0 | -0/+0 |
|
|
* | svnmerge.py block -r61564 | Christian Heimes | 2008-03-18 | 0 | -0/+0 |
|
|
* | Convert the input from stdout to text. | Brett Cannon | 2008-03-18 | 1 | -1/+1 |
|
|
* | Blocked a rev in which I added a warning. | David Wolever | 2008-03-18 | 0 | -0/+0 |
|
|
* | Get this test to pass (UserList/UserDict no longer exist and caused a skip). | Neal Norwitz | 2008-03-18 | 1 | -23/+16 |
|
|
* | Get this test to work (it was skipped previously): | Neal Norwitz | 2008-03-18 | 1 | -25/+26 |
|
|
* | Fix 're' to work on bytes. It could do with a few more tests, though. | Thomas Wouters | 2008-03-18 | 3 | -34/+22 |
|
|
* | Add missing UNPACK_EX opcode. | Thomas Wouters | 2008-03-18 | 1 | -1/+1 |
|
|
* | Revert r61508: it caused test_mailbox to fail on all platforms. | Neal Norwitz | 2008-03-18 | 2 | -115/+69 |
|
|
* | Merged revisions 61520,61523-61528,61532 via svnmerge from | Christian Heimes | 2008-03-18 | 10 | -92/+242 |
|
|
* | Remove unnused vars that I missed in previous removal of output file generation. | Neal Norwitz | 2008-03-18 | 1 | -2/+0 |
|
|
* | svnmerge.py block -r61529 | Christian Heimes | 2008-03-18 | 0 | -0/+0 |
|
|
* | Fix a bunch of problems from merges. | Neal Norwitz | 2008-03-18 | 1 | -30/+11 |
|
|
* | Added test_print.py. I want to have a test suite when the print function is ... | Eric Smith | 2008-03-18 | 1 | -0/+102 |
|
|
* | Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,... | Christian Heimes | 2008-03-18 | 33 | -962/+980 |
|
|
* | block r61491 | Christian Heimes | 2008-03-18 | 0 | -0/+0 |
|
|
* | In TextIOWrapper: | Ka-Ping Yee | 2008-03-18 | 2 | -69/+115 |
|
|
* | Make TextIOWrapper's seek/tell work properly with stateful decoders; | Ka-Ping Yee | 2008-03-18 | 3 | -111/+369 |
|
|
* | Blocked revisions 61492 via svnmerge | Guido van Rossum | 2008-03-18 | 0 | -0/+0 |
|
|
* | Blocked revisions 61489 via svnmerge | Guido van Rossum | 2008-03-18 | 0 | -0/+0 |
|
|
* | Blocked revisions 61486 via svnmerge | Guido van Rossum | 2008-03-18 | 0 | -0/+0 |
|
|
* | Blocked revisions 61478 via svnmerge | Guido van Rossum | 2008-03-18 | 0 | -0/+0 |
|
|
* | Blocked revisions 61475 via svnmerge | Guido van Rossum | 2008-03-18 | 0 | -0/+0 |
|
|
* | - A new pickle protocol (protocol 3) is added with explicit support | Guido van Rossum | 2008-03-17 | 6 | -55/+165 |
|
|
* | Whoops, I missed a few more places that were using slicing from the operator ... | Neal Norwitz | 2008-03-17 | 3 | -39/+2 |
|
|
* | mention the zlib crc32/adler32 changes | Gregory P. Smith | 2008-03-17 | 1 | -0/+2 |
|
|
* | Bug #2301: Don't try decoding the source code into the original | Martin v. Löwis | 2008-03-17 | 4 | -74/+18 |
|
|
* | Patch from jbalogh fixes issue #2282 (misnamed seekable() method). | Ka-Ping Yee | 2008-03-17 | 4 | -1/+10 |
|
|
* | Document the expected convention for getstate() (as explained to me by Guido). | Ka-Ping Yee | 2008-03-17 | 1 | -1/+3 |
|
|
* | zlib.crc32 and zlib.adler32 now return an unsigned value as any sane person | Gregory P. Smith | 2008-03-17 | 3 | -2/+14 |
|
|
* | use PyBUF_LOCK instead of PyBUF_SIMPLE for bsddb data access as it'll often | Gregory P. Smith | 2008-03-17 | 1 | -4/+3 |
|
|
* | Added tests for tokenize, blocked corresponding checkin from trunk. | Eric Smith | 2008-03-17 | 1 | -2/+10 |
|
|
* | Renamed test_hexoct.py to test_int_literal.py, to match r61422 in the trunk. | Eric Smith | 2008-03-17 | 2 | -116/+147 |
|
|
* | Add missing parameter spotted by Jared Flatow | Neal Norwitz | 2008-03-17 | 1 | -1/+1 |
|
|
* | Remove __{get,set,del}slice__ dingleberries. | Neal Norwitz | 2008-03-17 | 1 | -47/+0 |
|
|
* | Blocked r61442, which is a backport of PEP 3127 features already in py3k. | Eric Smith | 2008-03-17 | 0 | -0/+0 |
|
|
* | Remove the "unsafe" flag on peek() -- it is no longer used, because | Ka-Ping Yee | 2008-03-17 | 1 | -13/+8 |
|
|
* | Block r61438 from forward porting sinc it's a classic-classes fix. | Jeffrey Yasskin | 2008-03-17 | 0 | -0/+0 |
|
|
* | Clean up svnmerge properties | Christian Heimes | 2008-03-16 | 0 | -0/+0 |
|
|