| | #!/usr/bin/env python |
---|
| | # Copyright (c) 2003-2004 TundraWare Inc. All Rights Reserved. |
---|
| | |
---|
| | PROGNAME = "tconfpy Test Driver" |
---|
| | RCSID = "$Id: test-tc.py,v 1.109 2004/03/14 01:21:14 tundra Exp $" |
---|
| | RCSID = "$Id: test-tc.py,v 1.110 2004/03/14 01:35:23 tundra Exp $" |
---|
| | VERSION = RCSID.split()[2] |
---|
| | |
---|
| | # Copyright Information |
---|
| | |
---|
| |
---|
| | |
---|
| | files = 1 |
---|
| | DEBUG = False |
---|
| | |
---|
| | symtbl = {"foo" : ["val1", False, True, "s", None, None, None, None], |
---|
| | "baz" : [3, False, True, "i", None, None, None, None] |
---|
| | symtbl = {"foo" : ["val1", True, "s", None, None, None, None], |
---|
| | "baz" : [3, True, "i", None, None, None, None] |
---|
| | } |
---|
| | |
---|
| | #symtbl = {} |
---|
| | |
---|
| |
---|
| | |
|