35
35
def __init__(self, *args):
36
36
"""Create a new 'StaticTuple'"""
41
38
if type(bit) not in (str, StaticTuple, unicode, int, long, float,
43
40
raise TypeError('StaticTuple can only point to'
44
41
' StaticTuple, str, unicode, int, long, float, bool, or'
45
42
' None not %s' % (type(bit),))
46
46
# We don't need to pass args to tuple.__init__, because that was
47
47
# already handled in __new__.