| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 67654,67676-67677,67681,67692,67725,67746,67748,67761,67784-... | Benjamin Peterson | 2008-12-21 | 1 | -2/+2 |
|
|
* | follow-up of issue3473: update the compiler package to recognize the new syntax. | Amaury Forgeot d'Arc | 2008-08-20 | 1 | -26/+24 |
|
|
* | Issue 2117. Update compiler module to handle class decorators. | Facundo Batista | 2008-02-25 | 1 | -0/+12 |
|
|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Backport PEP 3110's new 'except' syntax to 2.6. | Collin Winter | 2007-05-18 | 1 | -1/+1 |
|
|
* | Patch #1638243: the compiler package is now able to correctly compile | Georg Brandl | 2007-01-27 | 1 | -1/+1 |
|
|
* | Bug #1441397: The compiler module now recognizes module and function | Georg Brandl | 2006-07-29 | 1 | -0/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-06-27 | 1 | -1/+1 |
|
|
* | Set lineno correctly on list, tuple and dict literals. | Georg Brandl | 2006-06-22 | 1 | -5/+5 |
|
|
* | fix [ 1509132 ] compiler module builds incorrect AST for TryExceptFinally | Georg Brandl | 2006-06-21 | 1 | -18/+23 |
|
|
* | Fix errors found by pychecker | Neal Norwitz | 2006-06-11 | 1 | -2/+0 |
|
|
* | Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package. | Georg Brandl | 2006-05-03 | 1 | -7/+5 |
|
|
* | Use absolute imports | Neal Norwitz | 2006-04-03 | 1 | -2/+2 |
|
|
* | 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 |
|
|
* | Fix com_arglist() and update grammar fragment. | Jeremy Hylton | 2002-04-19 | 1 | -6/+3 |
|
|
* | Patch #522279: transformer.py nodes shadows global. | Martin v. Löwis | 2002-02-28 | 1 | -3/+3 |
|
|
* | Merge of the release22 branch changes back into the trunk. | Barry Warsaw | 2001-12-21 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-10-18 | 1 | -9/+9 |
|
|
* | Handle testlist_safe as if it were testlist. | Jeremy Hylton | 2001-10-17 | 1 | -0/+4 |
|
|
* | API change: | Jeremy Hylton | 2001-09-17 | 1 | -2/+8 |
|
|
* | Last set of change to get regression tests to pass | Jeremy Hylton | 2001-09-17 | 1 | -0/+4 |
|
|
* | Make sure that atoms (Tuple, List, etc.) have lineno attributes | Jeremy Hylton | 2001-08-29 | 1 | -2/+4 |
|
|
* | Add support for // and //=. | Jeremy Hylton | 2001-08-29 | 1 | -5/+16 |
|
|
* | Don't include doc string of class in its code child | Jeremy Hylton | 2001-08-29 | 1 | -0/+5 |
|
|
* | Add lookup_name() to optimize use of stack frames | Jeremy Hylton | 2001-08-27 | 1 | -5/+21 |
|
|