35
35
def __init__(self, *args):
36
36
"""Create a new 'StaticTuple'"""
38
41
if type(bit) not in (str, StaticTuple, unicode, int, long, float,
40
43
raise TypeError('StaticTuple can only point to'
41
44
' StaticTuple, str, unicode, int, long, float, bool, or'
42
45
' 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__.