summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/transformer.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix "import as" (has always skipping the as name)Jeremy Hylton2001-04-091-9/+15
* a few small optimizations that seem to give a 5-10% speedup; theJeremy Hylton2000-11-061-76/+80
* If a function contains a doc string, remove the doc string node fromJeremy Hylton2000-11-061-1/+5
* Many changes.Jeremy Hylton2000-10-251-220/+145
* Now supports entire Python 2.0 language and still supports PythonJeremy Hylton2000-10-131-48/+159
* Fix SF bug #116263: support for from .. import *Jeremy Hylton2000-10-121-0/+2
* change 2-space indent to 4-space indentJeremy Hylton2000-09-201-1081/+1079
* Update magic number.Jeremy Hylton2000-09-011-7/+25
* update my email addressJeremy Hylton2000-08-041-1/+4
* add a bit more legal junkGreg Stein2000-08-031-8/+16
* patches from Mark HammondJeremy Hylton2000-05-021-3/+25
* fix list.append problemsJeremy Hylton2000-03-161-3/+3
* change node Classdef to ClassJeremy Hylton2000-03-061-20/+21
* more robust assignment of lineno for keyword argsJeremy Hylton2000-02-161-3/+3
* fix creation of Ellipsis nodeJeremy Hylton2000-02-151-1/+1
* add line numbers to nodes in the except clause (when possible)Jeremy Hylton2000-02-151-1/+3
* (), [], and {} should not be represented as constant expressions, theyJeremy Hylton2000-02-141-3/+3