summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/symbols.py
Commit message (Expand)AuthorAgeFilesLines
* Fix a bug in the ``compiler`` package that caused invalid code to beNeil Schemenauer2006-08-161-1/+1
* Fix errors found by pycheckerNeal Norwitz2006-06-111-1/+1
* Use sorted() builtinNeal Norwitz2005-11-251-10/+5
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-0/+2
* Whitespace normalization.Tim Peters2004-07-071-3/+3
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+41
* Fix SF bug [ 788011 ] compiler.compileFile fails on csv.pyJeremy Hylton2003-08-281-1/+6
* SF patch [ 597919 ] compiler package and SET_LINENOJeremy Hylton2002-12-311-0/+3
* Merge of the release22 branch changes back into the trunk.Barry Warsaw2001-12-211-0/+2
* Whitespace normalization.Tim Peters2001-10-181-8/+8
* The object-being sliced in an assignment to a slice is referenced, notJeremy Hylton2001-09-141-2/+2
* Add generator detection to symbol table.Jeremy Hylton2001-08-291-9/+35
* Handle private namesJeremy Hylton2001-08-271-7/+3
* Fix for sibling nodes that define the same free variableJeremy Hylton2001-08-271-6/+10
* Only treat an AugAssign as def if its the target is a Name.Jeremy Hylton2001-04-121-2/+4
* Preliminary support for nested scopesJeremy Hylton2001-04-121-5/+125
* 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