| Commit message (Expand) | Author | Age | Files | Lines |
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -3/+3 |
|
|
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -2/+2 |
|
|
* | Fix the compiler package w.r.t. the new metaclass syntax. | Guido van Rossum | 2007-03-19 | 5 | -21/+35 |
|
|
* | Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ... | Georg Brandl | 2007-03-18 | 1 | -1/+1 |
|
|
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 4 | -2/+23 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 3 | -4/+4 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 4 | -90/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 7 | -45/+45 |
|
|
* | Merged revisions 53538-53622 via svnmerge from | Thomas Wouters | 2007-02-05 | 2 | -1/+3 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 2 | -9/+31 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 5 | -84/+264 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -7/+5 |
|
|
* | The rest of patch 1549670 by Jiwon, making the compiler test pass. | Guido van Rossum | 2006-11-22 | 1 | -9/+2 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 4 | -18/+82 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 3 | -19/+5 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 4 | -54/+0 |
|
|
* | Get rid of some more cases of backquotes. parsermodule.c doesn't compile | Neal Norwitz | 2006-08-29 | 1 | -4/+0 |
|
|
* | Small fix for compiler module ./. set literals. | Georg Brandl | 2006-08-28 | 1 | -1/+1 |
|
|
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 4 | -10/+39 |
|
|
* | Vestige of code from removing backticks. | Brett Cannon | 2006-08-27 | 1 | -14/+0 |
|
|
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -3/+0 |
|
|
* | Killed the <> operator. You must now use !=. | Guido van Rossum | 2006-08-24 | 1 | -2/+2 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 3 | -9/+16 |
|
|
* | Stomp out more hsa_key() calls. | Guido van Rossum | 2006-08-19 | 5 | -17/+17 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 4 | -58/+42 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 2 | -9/+5 |
|
|
* | Ok, compiler.transformer can really be imported now | Neal Norwitz | 2006-03-24 | 3 | -6/+6 |
|
|
* | Use relative imports in compiler package now that it is required. (Should th... | Neal Norwitz | 2006-03-24 | 1 | -3/+3 |
|
|
* | INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | Remove apply() | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | Get rid of last vestiges of BINARY_DIVIDE. | Neal Norwitz | 2006-03-16 | 1 | -3/+1 |
|
|
* | Teach the compiler module about augmented assignment to tuple subscripts | Nick Coghlan | 2006-03-14 | 1 | -4/+2 |
|
|
* | Um, I thought I'd already checked this in. | Guido van Rossum | 2006-03-10 | 2 | -3/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-03-04 | 1 | -3/+3 |
|
|
* | SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. | Neal Norwitz | 2006-03-03 | 1 | -0/+1 |
|
|
* | Fix compiler breakage related to absolute imports | Neal Norwitz | 2006-03-03 | 1 | -2/+2 |
|
|
* | Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can | Neal Norwitz | 2006-03-03 | 2 | -4/+2 |
|
|
* | Add support for absolute/relative imports and if/else expressions: | Thomas Wouters | 2006-03-03 | 5 | -19/+82 |
|
|
* | Fix failure of test_compiler.py when compiling test_contextlib.py. | Guido van Rossum | 2006-03-02 | 1 | -3/+3 |
|
|
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 1 | -1/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-02-28 | 1 | -3/+3 |
|
|
* | Forgot to explain the effect of the new opcode. | Guido van Rossum | 2006-02-28 | 1 | -0/+1 |
|
|
* | Update the compiler package to compile the with-statement. | Guido van Rossum | 2006-02-28 | 2 | -0/+62 |
|
|
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -3/+28 |
|
|
* | Make or_test similar to test, not testlist. | Martin v. Löwis | 2006-02-27 | 1 | -1/+2 |
|
|
* | Skip over doc strings. | Martin v. Löwis | 2006-02-27 | 1 | -1/+8 |
|
|
* | Handle testlist_safe and or_test like testlist. | Martin v. Löwis | 2006-02-27 | 1 | -2/+2 |
|
|
* | Alias non-terminals introduced for backwards compatibility. | Martin v. Löwis | 2006-02-27 | 1 | -0/+3 |
|
|
* | Remove unused _callers member. No need for types, use isinstance | Neal Norwitz | 2005-11-25 | 1 | -5/+2 |
|
|