14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
17
"""The pure-python implementation of the StaticTuple type.
21
19
Note that it is generally just implemented as using tuples of tuples of
26
26
class StaticTuple(tuple):
27
27
"""A static type, similar to a tuple of strings."""