| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 61596-61597 via svnmerge from | Martin v. Löwis | 2008-03-19 | 67 | -0/+11990 |
|
|
* | 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 | 1 | -5/+25 |
|
|
* | - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been | Trent Nelson | 2008-03-18 | 8 | -105/+490 |
|
|
* | 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 | 3 | -69/+144 |
|
|
* | Remove unnused vars that I missed in previous removal of output file generation. | Neal Norwitz | 2008-03-18 | 1 | -2/+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 | 16 | -856/+717 |
|
|
* | 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 |
|
|
* | - A new pickle protocol (protocol 3) is added with explicit support | Guido van Rossum | 2008-03-17 | 5 | -55/+153 |
|
|
* | Whoops, I missed a few more places that were using slicing from the operator ... | Neal Norwitz | 2008-03-17 | 3 | -39/+2 |
|
|
* | Bug #2301: Don't try decoding the source code into the original | Martin v. Löwis | 2008-03-17 | 1 | -0/+7 |
|
|
* | Patch from jbalogh fixes issue #2282 (misnamed seekable() method). | Ka-Ping Yee | 2008-03-17 | 2 | -1/+7 |
|
|
* | 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 | 1 | -0/+8 |
|
|
* | 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 |
|
|
* | Remove the "unsafe" flag on peek() -- it is no longer used, because | Ka-Ping Yee | 2008-03-17 | 1 | -13/+8 |
|
|
* | Fix doctests in test_tokenize by converting Python 2.x syntax | Mark Dickinson | 2008-03-16 | 1 | -49/+49 |
|
|
* | Fix failing test test_bool following merge from trunk. | Mark Dickinson | 2008-03-16 | 1 | -1/+1 |
|
|
* | Merged revisions 61404-61407 via svnmerge from | Christian Heimes | 2008-03-16 | 3 | -62/+6 |
|
|
* | Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,... | Christian Heimes | 2008-03-16 | 31 | -1458/+1448 |
|
|
* | Fix crasher in unpacking assignments with star, where the size constraints | Thomas Wouters | 2008-03-14 | 1 | -0/+17 |
|
|
* | Move itertools izip() code to builtins as zip(). Complete the renaming. | Raymond Hettinger | 2008-03-13 | 6 | -93/+91 |
|
|
* | Rename ifilterfalse() to filterfalse() and izip_longest() to zip_longest(). | Raymond Hettinger | 2008-03-13 | 2 | -45/+45 |
|
|
* | Issues 2186 and 2187. Move map() from itertools to builtins. | Raymond Hettinger | 2008-03-13 | 5 | -9/+10 |
|
|
* | Issue 2186 and 2187. Move filter from itertools to builtins. | Raymond Hettinger | 2008-03-13 | 2 | -2/+3 |
|
|
* | Also set LC_CTYPE, to allow localeconv string conversion. | Martin v. Löwis | 2008-03-10 | 1 | -3/+7 |
|
|
* | strxfrm and strcoll are conditionally defined, alwsy provide some impl | Neal Norwitz | 2008-03-10 | 1 | -11/+17 |
|
|
* | Skip tests if the file mapping file cannot be fetched. | Martin v. Löwis | 2008-03-08 | 1 | -1/+4 |
|
|
* | Default to ASCII as the locale.getpreferredencoding, if the POSIX | Martin v. Löwis | 2008-03-08 | 1 | -1/+5 |
|
|
* | Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge... | Christian Heimes | 2008-03-04 | 5 | -11/+119 |
|
|
* | Merged revisions 61207 via svnmerge from | Christian Heimes | 2008-03-03 | 1 | -2/+2 |
|
|
* | Merged revisions 61203-61204 via svnmerge from | Christian Heimes | 2008-03-03 | 3 | -4/+16 |
|
|
* | Merged revisions 61189-61190,61192,61194-61195,61198-61199 via svnmerge from | Christian Heimes | 2008-03-03 | 5 | -2201/+802 |
|
|
* | Toss test.testall. | Brett Cannon | 2008-03-03 | 1 | -4/+0 |
|
|
* | Fixed failing unit tests due to str/bytes mismatch. | Alexandre Vassalotti | 2008-03-03 | 4 | -19/+22 |
|
|
* | Actually have test_largefile execute. Call to test.test_support.run_unittest() | Brett Cannon | 2008-03-03 | 1 | -0/+4 |
|
|
* | Merged revisions 61143-61144,61146-61147,61150-61151,61157,61165-61168,61170-... | Christian Heimes | 2008-03-02 | 15 | -15/+71 |
|
|
* | Copyright and version tweaks for 3.0a3.v3.0a3 | Barry Warsaw | 2008-03-01 | 2 | -2/+2 |
|
|
* | Disable the cProfile test for now -- it's broken. | Barry Warsaw | 2008-03-01 | 2 | -3/+13 |
|
|
* | Change test_profile to only compare data that originates from the test file. | Brett Cannon | 2008-03-01 | 1 | -57/+11 |
|
|
* | When the _iter_mixin stopped inheritting from UsserDictMixin, it lost the | Neal Norwitz | 2008-03-01 | 1 | -0/+3 |
|
|