diff --git a/test-tc.py b/test-tc.py index d749bd4..2fb0baf 100755 --- a/test-tc.py +++ b/test-tc.py @@ -2,7 +2,7 @@ # Copyright (c) 2003-2004 TundraWare Inc. All Rights Reserved. PROGNAME = "tconfpy Test Driver" -RCSID = "$Id: test-tc.py,v 1.113 2004/03/20 00:47:59 tundra Exp $" +RCSID = "$Id: test-tc.py,v 1.114 2004/03/20 00:50:12 tundra Exp $" VERSION = RCSID.split()[2] # Copyright Information @@ -24,11 +24,11 @@ ########## -# Format and return contents of a variable descriptor +# Format and return contents of a symbol table entry ########## -def dumpdescript(val, d): +def dumpsymbol(val, d): retval = str(val) + " " * (15 - len(val)) @@ -44,7 +44,7 @@ return retval -# End of 'dumpdescript()' +# End of 'dumpsymbol()' ########## # Routine to dump returned values @@ -64,7 +64,7 @@ for val in items: if isdict: - print dumpdescript(val, data[val]) + print dumpsymbol(val, data[val]) else: print val