| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 55270-55324 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -1534/+0 |
|
|
* | 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 | 1 | -5/+6 |
|
|
* | 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 | 1 | -2/+4 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -21/+0 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -1/+1 |
|
|
* | Merged revisions 53538-53622 via svnmerge from | Thomas Wouters | 2007-02-05 | 1 | -1/+1 |
|
|
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 1 | -6/+6 |
|
|
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -39/+79 |
|
|
* | 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 | 1 | -11/+50 |
|
|
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -3/+5 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -15/+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 | 1 | -7/+14 |
|
|
* | Killed the <> operator. You must now use !=. | Guido van Rossum | 2006-08-24 | 1 | -2/+2 |
|
|
* | Stomp out more hsa_key() calls. | Guido van Rossum | 2006-08-19 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -24/+28 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -7/+5 |
|
|
* | Ok, compiler.transformer can really be imported now | Neal Norwitz | 2006-03-24 | 1 | -2/+2 |
|
|
* | Remove apply() | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
|
|
* | Add support for absolute/relative imports and if/else expressions: | Thomas Wouters | 2006-03-03 | 1 | -10/+30 |
|
|
* | Fix failure of test_compiler.py when compiling test_contextlib.py. | Guido van Rossum | 2006-03-02 | 1 | -3/+3 |
|
|
* | Update the compiler package to compile the with-statement. | Guido van Rossum | 2006-02-28 | 1 | -0/+21 |
|
|
* | Make or_test similar to test, not testlist. | Martin v. Löwis | 2006-02-27 | 1 | -1/+2 |
|
|
* | 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 |
|
|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 1 | -1/+11 |
|
|
* | patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror) | Georg Brandl | 2005-07-02 | 1 | -11/+11 |
|
|
* | Flush out support for ``class B(): pass`` syntax by adding support to the | Brett Cannon | 2005-04-09 | 1 | -1/+3 |
|
|
* | Fix bug | Michael W. Hudson | 2004-11-08 | 1 | -2/+2 |
|
|
* | This is jiwon's patch to fix: | Michael W. Hudson | 2004-10-11 | 1 | -1/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-09-12 | 1 | -6/+6 |
|
|
* | Remove debugging print (not triggered by test suite) and add XXX comment abou... | Jeremy Hylton | 2004-09-07 | 1 | -1/+1 |
|
|
* | compiler.transformer: correct lineno attribute when possible | Jeremy Hylton | 2004-09-07 | 1 | -176/+111 |
|
|
* | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 1 | -32/+44 |
|
|
* | This is Mark Russell's patch: | Michael W. Hudson | 2004-08-17 | 1 | -11/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-08-04 | 1 | -5/+5 |
|
|
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -7/+59 |
|
|
* | this is patch | Michael W. Hudson | 2004-07-12 | 1 | -1/+1 |
|
|
* | SF patch #872326: Generator expression implementation | Raymond Hettinger | 2004-05-19 | 1 | -0/+53 |
|
|
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-03-07 | 1 | -1/+1 |
|
|
* | Remove debugging prints. | Michael W. Hudson | 2003-01-03 | 1 | -2/+0 |
|
|
* | SF patch [ 597919 ] compiler package and SET_LINENO | Jeremy Hylton | 2002-12-31 | 1 | -3/+29 |
|
|
* | Remove uses of string module and stat.ST_MODE | Neal Norwitz | 2002-06-06 | 1 | -2/+1 |
|
|