cpython/Lib/compiler
Jeremy Hylton bf77c465bd Undo change from list to dict for handling varnames, consts, etc.
As the doc string for _lookupName() explains:

    This routine uses a list instead of a dictionary, because a
    dictionary can't store two different keys if the keys have the
    same value but different types, e.g. 2 and 2L.  The compiler
    must treat these two separately, so it does an explicit type
    comparison before comparing the values.
2001-08-29 19:45:33 +00:00
..
__init__.py typo 2001-04-09 04:23:55 +00:00
ast.py Revise implementations of getChildren() and getChildNodes(). 2001-08-29 18:08:02 +00:00
consts.py Define constants for types of scopes 2001-04-12 06:39:24 +00:00
future.py Track removal of doc string from Module().nodes[0] 2001-08-18 00:07:46 +00:00
misc.py Handle private names 2001-08-27 22:56:16 +00:00
pyassem.py Undo change from list to dict for handling varnames, consts, etc. 2001-08-29 19:45:33 +00:00
pycodegen.py Support // and //= 2001-08-29 18:14:39 +00:00
symbols.py Add generator detection to symbol table. 2001-08-29 18:10:51 +00:00
transformer.py Add support for // and //=. 2001-08-29 18:12:30 +00:00
visitor.py Change default() to use getChildNodes() instead of getChildren() 2001-08-29 18:17:22 +00:00