Fixed initial value for templb for type agreement.
1 parent e569718 commit c0a10c2678f5b9f94c044732d2075bcc2e487192
@tundra tundra authored on 19 Jan 2005
Showing 1 changed file
View
4
test-tc.py
# test-tc.py - A Test Driver For The 'tconfpy' Configuration File Parser
# Copyright (c) 2003-2005 TundraWare Inc. All Rights Reserved.
 
PROGNAME = "tconfpy Test Driver"
RCSID = "$Id: test-tc.py,v 1.142 2005/01/18 08:11:12 tundra Exp $"
RCSID = "$Id: test-tc.py,v 1.143 2005/01/19 10:56:57 tundra Exp $"
VERSION = RCSID.split()[2]
 
# Copyright Information
 
 
# We use the exact same scheme for building variable templates
 
templs = [ ["templb", 1, True, TYPE_BOOL, False, [], None, None ],
templs = [ ["templb", True, True, TYPE_BOOL, False, [], None, None ],
["templc", 4+5j, None, TYPE_COMPLEX, 0-0j, [0-0j, 1-1j, 1+1j], None, None ],
["templf", 1.0, None, TYPE_FLOAT, 0.5, [0.5, 3.14, 2.73], None, None ],
["templi", 1, None, TYPE_INT, 0, [0, 1, 2, 23], None, None ],
["templs", "stringy", None, None, None, [r'^box$', r'^Bax', r'a+bc'], 3, 8 ]