diff --git a/tconfpy.py b/tconfpy.py index e0121b9..d41f686 100755 --- a/tconfpy.py +++ b/tconfpy.py @@ -6,7 +6,7 @@ # Program Information PROGNAME = "tconfpy" -RCSID = "$Id: tconfpy.py,v 2.100 2005/01/13 22:55:58 tundra Exp $" +RCSID = "$Id: tconfpy.py,v 2.101 2005/01/13 23:03:24 tundra Exp $" VERSION = RCSID.split()[2] # Copyright Information @@ -162,11 +162,6 @@ # Symbol Table Related Classes ########## -# Symbol Table is an object containing a dictionary in the form: -# -# {varname : descriptor} -# - class SymbolTable(object): def __init__(self): @@ -186,8 +181,6 @@ # End of class 'SymbolTable' -# A Template is essentially a minimalist symbol table - class Template(object): def __init__(self): @@ -668,7 +661,7 @@ def ParseFile(cfgfile, current_cfg, current_linenum): - global MsgList, SymTable + global SymTable linenum=0 @@ -700,7 +693,7 @@ def ParseLine(line, cfgfile, linenum): - global MsgList, SymTable + global SymTable orig = line # May need copy of original for debug output