summaryrefslogtreecommitdiffstats
path: root/Lib/compiler
Commit message (Expand)AuthorAgeFilesLines
* 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
* factor out the tree walking/visitor code that was in compile.pyJeremy Hylton2000-03-061-0/+127
* satisfy the tabnanny (thanks to MH for noticing the problem)Jeremy Hylton2000-02-212-98/+98
* changes to _lookupNameJeremy Hylton2000-02-171-14/+13
* the previous quick hack to fix def foo((x,y)) failed on some casesJeremy Hylton2000-02-172-16/+48
* add varargs and kwargs flags to Lambda nodesJeremy Hylton2000-02-171-0/+5
* satisfy the tabnannyJeremy Hylton2000-02-171-197/+199
* support for arglists with implicit tuple unpacksJeremy Hylton2000-02-161-15/+61
* more robust assignment of lineno for keyword argsJeremy Hylton2000-02-161-3/+3
* fix argcount generation for arg lists containing tuple unpacksJeremy Hylton2000-02-161-2/+13
* add flatten helper functionJeremy Hylton2000-02-161-0/+11
* finish first impl of code generatorJeremy Hylton2000-02-151-12/+70
* fix creation of Ellipsis nodeJeremy Hylton2000-02-151-1/+1
* add a little debugging support when new.code raises SystemErrorJeremy Hylton2000-02-151-5/+21
* add line numbers to nodes in the except clause (when possible)Jeremy Hylton2000-02-151-1/+3
* tidy up tryexcept and tryfinally nodesJeremy Hylton2000-02-151-14/+20
* edit a doc stringJeremy Hylton2000-02-141-1/+6
* get rid of spurious printJeremy Hylton2000-02-141-1/+0
* looks like everything is working except for try/except (pystoneJeremy Hylton2000-02-141-6/+14
* LeftShift & RightShift: fix reprs, change attr names to left and rightJeremy Hylton2000-02-141-10/+10
* rename several of the generic attribute names for nodes. new node attrs are:Jeremy Hylton2000-02-141-12/+12
* (), [], and {} should not be represented as constant expressions, theyJeremy Hylton2000-02-141-3/+3
* split compile.py into two filesJeremy Hylton2000-02-142-536/+623
* change MODULE_NAMESPACE/FUNCTION_NAMESPACE stuff to have a single flagJeremy Hylton2000-02-121-34/+87