summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/pyassem.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 67654,67676-67677,67681,67692,67725,67746,67748,67761,67784-...Benjamin Peterson2008-12-211-3/+3
* Replaced import of the 'new' module with 'types' module and added a deprecati...Christian Heimes2007-11-271-2/+2
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-1/+1
* SF bug 1442442: LIST_APPEND optimization got lost in the AST merge.Neal Norwitz2006-03-031-0/+1
* Add support for absolute/relative imports and if/else expressions:Thomas Wouters2006-03-031-1/+1
* Forgot to explain the effect of the new opcode.Guido van Rossum2006-02-281-0/+1
* No need for types, use isinstanceNeal Norwitz2005-11-251-2/+1
* Merge ast-branch to headJeremy Hylton2005-10-201-10/+9
* SF patch [ 597919 ] compiler package and SET_LINENOJeremy Hylton2002-12-311-14/+9
* Remove uses of string module and stat.ST_MODENeal Norwitz2002-06-061-4/+3
* Whitespace normalization.Tim Peters2001-10-181-13/+13
* Vastly improved stacksize calculation.Jeremy Hylton2001-10-171-18/+51
* Various sundry changes for 2.2 compatibilityJeremy Hylton2001-09-141-4/+5
* Fix _convert_NAME() so that it doesn't store locals for class bodies.Jeremy Hylton2001-08-301-8/+6
* Improve stack depth computation for try/except and try/finallyJeremy Hylton2001-08-291-1/+4
* Fix off-by-one errors in code to find depth of stack.Jeremy Hylton2001-08-291-3/+3
* Undo change from list to dict for handling varnames, consts, etc.Jeremy Hylton2001-08-291-49/+22
* Modify name conversion to be (hopefully) a bit more efficient.Jeremy Hylton2001-08-291-17/+52
* XXX_NAME ops should affect varnamesJeremy Hylton2001-08-281-1/+4
* SF bug 430991: wrong co_lnotabTim Peters2001-06-091-17/+14
* pyassem.py:Jeremy Hylton2001-04-121-1/+100
* Revise handling of tuple arguments so that the variables names matchJeremy Hylton2001-04-121-1/+1
* Preliminary support for nested scopesJeremy Hylton2001-04-121-7/+43
* Make sure the docstring is always entered as the first element in theJeremy Hylton2001-04-111-11/+1
* 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-061-12/+108
* Now supports entire Python 2.0 language and still supports PythonJeremy Hylton2000-10-131-2/+8
* Fix SF bug #116263: support for from .. import *Jeremy Hylton2000-10-121-1/+3
* patch by Neil Schemenauer to improve (fix?) line number generationJeremy Hylton2000-09-011-15/+26
* Bring Tools/compiler almost up to date. Specifically:Thomas Wouters2000-08-121-130/+128
* patches from Mark HammondJeremy Hylton2000-05-021-7/+12
* complete rewriteJeremy Hylton2000-03-161-283/+341
* revise arguments for addCode method on lnotab. take several numbersJeremy Hylton2000-03-061-10/+13
* satisfy the tabnanny (thanks to MH for noticing the problem)Jeremy Hylton2000-02-211-90/+90
* changes to _lookupNameJeremy Hylton2000-02-171-14/+13
* the previous quick hack to fix def foo((x,y)) failed on some casesJeremy Hylton2000-02-171-9/+23
* fix argcount generation for arg lists containing tuple unpacksJeremy Hylton2000-02-161-2/+13
* add a little debugging support when new.code raises SystemErrorJeremy Hylton2000-02-151-5/+21
* split compile.py into two filesJeremy Hylton2000-02-141-0/+437