summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/transformer.py
Commit message (Expand)AuthorAgeFilesLines
* Issue 2117. Update compiler module to handle class decorators.Facundo Batista2008-02-251-0/+12
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Backport PEP 3110's new 'except' syntax to 2.6.Collin Winter2007-05-181-1/+1
* Patch #1638243: the compiler package is now able to correctly compileGeorg Brandl2007-01-271-1/+1
* Bug #1441397: The compiler module now recognizes module and functionGeorg Brandl2006-07-291-0/+1
* Whitespace normalization.Tim Peters2006-06-271-1/+1
* Set lineno correctly on list, tuple and dict literals.Georg Brandl2006-06-221-5/+5
* fix [ 1509132 ] compiler module builds incorrect AST for TryExceptFinallyGeorg Brandl2006-06-211-18/+23
* Fix errors found by pycheckerNeal Norwitz2006-06-111-2/+0
* Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package.Georg Brandl2006-05-031-7/+5
* Use absolute importsNeal Norwitz2006-04-031-2/+2
* Add support for absolute/relative imports and if/else expressions:Thomas Wouters2006-03-031-10/+30
* Fix failure of test_compiler.py when compiling test_contextlib.py.Guido van Rossum2006-03-021-3/+3
* Update the compiler package to compile the with-statement.Guido van Rossum2006-02-281-0/+21
* Make or_test similar to test, not testlist.Martin v. Löwis2006-02-271-1/+2
* Handle testlist_safe and or_test like testlist.Martin v. Löwis2006-02-271-2/+2
* Alias non-terminals introduced for backwards compatibility.Martin v. Löwis2006-02-271-0/+3
* Remove unused _callers member. No need for types, use isinstanceNeal Norwitz2005-11-251-5/+2
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-1/+11
* patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror)Georg Brandl2005-07-021-11/+11
* Flush out support for ``class B(): pass`` syntax by adding support to theBrett Cannon2005-04-091-1/+3
* Fix bugMichael W. Hudson2004-11-081-2/+2
* This is jiwon's patch to fix:Michael W. Hudson2004-10-111-1/+6
* Whitespace normalization.Tim Peters2004-09-121-6/+6
* Remove debugging print (not triggered by test suite) and add XXX comment abou...Jeremy Hylton2004-09-071-1/+1
* compiler.transformer: correct lineno attribute when possibleJeremy Hylton2004-09-071-176/+111
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-311-32/+44
* This is Mark Russell's patch:Michael W. Hudson2004-08-171-11/+6
* Whitespace normalization.Tim Peters2004-08-041-5/+5
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-7/+59
* this is patchMichael W. Hudson2004-07-121-1/+1
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+53
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-1/+1
* Whitespace normalization.Tim Peters2003-03-071-1/+1
* Remove debugging prints.Michael W. Hudson2003-01-031-2/+0
* SF patch [ 597919 ] compiler package and SET_LINENOJeremy Hylton2002-12-311-3/+29
* Remove uses of string module and stat.ST_MODENeal Norwitz2002-06-061-2/+1
* Fix com_arglist() and update grammar fragment.Jeremy Hylton2002-04-191-6/+3
* Patch #522279: transformer.py nodes shadows global.Martin v. Löwis2002-02-281-3/+3
* Merge of the release22 branch changes back into the trunk.Barry Warsaw2001-12-211-1/+1
* Whitespace normalization.Tim Peters2001-10-181-9/+9
* Handle testlist_safe as if it were testlist.Jeremy Hylton2001-10-171-0/+4
* API change:Jeremy Hylton2001-09-171-2/+8
* Last set of change to get regression tests to passJeremy Hylton2001-09-171-0/+4
* Make sure that atoms (Tuple, List, etc.) have lineno attributesJeremy Hylton2001-08-291-2/+4
* Add support for // and //=.Jeremy Hylton2001-08-291-5/+16
* Don't include doc string of class in its code childJeremy Hylton2001-08-291-0/+5
* Add lookup_name() to optimize use of stack framesJeremy Hylton2001-08-271-5/+21
* Add Yield() statement handlerJeremy Hylton2001-08-181-1/+11
* Add lineno attributes to Discard nodesJeremy Hylton2001-04-111-1/+3