summaryrefslogtreecommitdiff
path: root/Lib/compiler
Commit message (Expand)AuthorAgeFilesLines
* SF bug 430991: wrong co_lnotabTim Peters2001-06-091-17/+14
* Pop loop off the loop stack before handling the loop's else clause.Jeremy Hylton2001-04-121-4/+4
* Use new _implicitNameOp() to generate name op code for list comprehensions.Jeremy Hylton2001-04-121-4/+17
* Add support for visitAssAttr to findOp().Jeremy Hylton2001-04-121-1/+1
* pyassem.py:Jeremy Hylton2001-04-122-14/+111
* Revise handling of tuple arguments so that the variables names matchJeremy Hylton2001-04-122-8/+8
* Only treat an AugAssign as def if its the target is a Name.Jeremy Hylton2001-04-121-2/+4
* Fix unpackSequence() to use _nameOp() rather than LOAD_FASTJeremy Hylton2001-04-121-1/+2
* Inside a class scope always use LOAD_NAME, STORE_NAME, DEL_NAMEJeremy Hylton2001-04-121-0/+3
* Preliminary support for nested scopesJeremy Hylton2001-04-123-89/+396
* Define constants for types of scopesJeremy Hylton2001-04-121-0/+5
* typoJeremy Hylton2001-04-111-4/+8
* [finishing fix from earlier checkins]Jeremy Hylton2001-04-111-0/+1
* Add support for extra (*) arguments to preorder.Jeremy Hylton2001-04-111-3/+3
* Generate docstrings.Jeremy Hylton2001-04-111-3/+26
* Add lineno attributes to Discard nodesJeremy Hylton2001-04-111-1/+3
* Make sure the docstring is always entered as the first element in theJeremy Hylton2001-04-111-11/+1
* Add globals to list of names returned by get_names().Jeremy Hylton2001-04-091-7/+13
* Add two arguments to Scope constructor, module scope and class nameJeremy Hylton2001-04-091-24/+92
* Add preliminary module symbol table constructorJeremy Hylton2001-04-091-0/+193
* Add support for future statementsJeremy Hylton2001-04-092-6/+98
* Fix "import as" (has always skipping the as name)Jeremy Hylton2001-04-091-9/+15
* typoJeremy Hylton2001-04-091-1/+1
* a few small optimizations that seem to give a 5-10% speedup; theJeremy Hylton2000-11-061-76/+80
* move pruneNext method to correct object (doh!)Jeremy Hylton2000-11-061-24/+24
* Change the graph structure to contain the code generator object forJeremy Hylton2000-11-063-21/+133
* 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
* Generated from rev 1.1 of ast.txtJeremy Hylton2000-10-251-677/+606
* Small optimizations in dispatch method: 1) lookup node's __class__ onceJeremy Hylton2000-10-251-12/+14
* Now supports entire Python 2.0 language and still supports PythonJeremy Hylton2000-10-134-93/+463
* Fix SF bug #116263: support for from .. import *Jeremy Hylton2000-10-123-4/+13
* change 2-space indent to 4-space indentJeremy Hylton2000-09-201-1081/+1079
* patch by Neil Schemenauer to improve (fix?) line number generationJeremy Hylton2000-09-012-17/+32
* Update magic number.Jeremy Hylton2000-09-012-15/+47
* Bring Tools/compiler almost up to date. Specifically:Thomas Wouters2000-08-123-348/+349
* replace most calls to emit 'SET_LINENO' will call to method set_linenoJeremy Hylton2000-08-041-31/+42
* 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-024-14/+58
* complete rewriteJeremy Hylton2000-03-162-800/+831
* simplify visitor walker classJeremy Hylton2000-03-161-32/+22
* fix list.append problemsJeremy Hylton2000-03-161-3/+3
* change name of Set method: items -> elements (avoids confusion withJeremy Hylton2000-03-161-1/+1
* import compile function form pycodegenJeremy Hylton2000-03-061-0/+4
* rename compile.py to pycodegen.pyJeremy Hylton2000-03-061-176/+25
* add a doc stringJeremy Hylton2000-03-061-0/+20
* fix import to refer to compiler packageJeremy Hylton2000-03-061-1/+1
* revise arguments for addCode method on lnotab. take several numbersJeremy Hylton2000-03-061-10/+13
* change node Classdef to ClassJeremy Hylton2000-03-062-24/+25