comparison python/ppci/core/symboltable.py @ 107:1544e7a4aa98

Improvements
author Windel Bouwman
date Tue, 01 Jan 2013 17:16:05 +0100
parents
children
comparison
equal deleted inserted replaced
106:f2d980eef509 107:1544e7a4aa98
1
2 class SymbolTable:
3 """ Holds a table of symbols for a module or function """
4 def __init__(self):
5 self.symbols = {}
6
7