summaryrefslogtreecommitdiff
path: root/Tools/compiler
Commit message (Expand)AuthorAgeFilesLines
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Backed out changeset 7d2018774925Serhiy Storchaka2015-02-161-2/+5
* Use os.devnull instead of hardcoded '/dev/null'.Serhiy Storchaka2015-02-151-5/+2
* Issue #7092: Fix the DeprecationWarnings emitted by the standard libraryAntoine Pitrou2010-01-041-3/+9
* Issue 2117. Update compiler module to handle class decorators.Facundo Batista2008-02-251-2/+2
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-232-2/+0
* NodeInfo.__gen_init(): Fiddle so that reindent.py isTim Peters2006-03-091-2/+5
* Update for absolute/relative imports and ifelse-expressions.Thomas Wouters2006-03-031-1/+2
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-1/+2
* Whitespace normalization.Tim Peters2005-12-251-1/+1
* Add comment about updating docsAndrew M. Kuchling2005-11-221-0/+3
* Merge ast-branch to headJeremy Hylton2005-10-201-4/+7
* Fix compiler.ast.flatten function so that it works on lists.Neil Schemenauer2005-06-021-4/+4
* Whitespace normalization.Tim Peters2004-09-121-1/+1
* compiler.transformer: correct lineno attribute when possibleJeremy Hylton2004-09-071-39/+30
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-023-8/+26
* Whitespace normalization, via reindent.py.Tim Peters2004-07-183-6/+6
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+11
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+1
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-4/+2
* Test utility to look for bad stacksize calculations.Jeremy Hylton2001-10-171-0/+43
* Removed files no longer needed.Fred Drake2001-09-283-663/+0
* Remove setup.py, unnecessary since compiler package is the stdJeremy Hylton2001-09-202-14/+2
* Moved to Tools/compiler along with astgen.pyJeremy Hylton2001-09-201-87/+0
* The compiler package is now part of the standard library.Jeremy Hylton2001-09-2012-5811/+0
* Track changes to compiler APIJeremy Hylton2001-09-172-9/+15
* API change:Jeremy Hylton2001-09-173-10/+109
* Re-created after change to astgen to calculate hardest_arg correctlyJeremy Hylton2001-09-171-577/+603
* Fix calculation of hardest_arg.Jeremy Hylton2001-09-172-6/+6
* Last set of change to get regression tests to passJeremy Hylton2001-09-173-5/+10
* Add -p option to invoke Python profilerJeremy Hylton2001-09-171-5/+11
* Only print attributes that start with co_.Jeremy Hylton2001-09-171-1/+6
* Handle more syntax errors.Jeremy Hylton2001-09-172-29/+77
* Add utility to set filename attribute on all nodesJeremy Hylton2001-09-171-0/+9
* support true divisionJeremy Hylton2001-09-171-1/+3
* Add code generator for yield stmtJeremy Hylton2001-09-141-0/+5
* del no longer necessary now that new module is goneJeremy Hylton2001-09-141-2/+0
* Various sundry changes for 2.2 compatibilityJeremy Hylton2001-09-142-137/+94
* The object-being sliced in an assignment to a slice is referenced, notJeremy Hylton2001-09-141-2/+2
* the new new doesn't define CO_xxx as the old new didJeremy Hylton2001-09-141-1/+9
* the names attribute of Global is not a nodeJeremy Hylton2001-09-143-3/+3
* Fix _convert_NAME() so that it doesn't store locals for class bodies.Jeremy Hylton2001-08-303-15/+15
* spurious popJeremy Hylton2001-08-301-1/+0
* Track the block stack more reasonably in order to handle continue inJeremy Hylton2001-08-291-13/+45
* Improve stack depth computation for try/except and try/finallyJeremy Hylton2001-08-291-1/+4
* Add __getitem__() handler for use by visitContinue()Jeremy Hylton2001-08-291-0/+2
* Generate SET_LINENO for list and tuple literals when the open parenJeremy Hylton2001-08-291-1/+3
* Make sure that atoms (Tuple, List, etc.) have lineno attributesJeremy Hylton2001-08-291-2/+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