1""" TSI{0,1,2,3,5} are private tables used by Microsoft Visual TrueType (VTT)
2tool to store its hinting source data.
3
4TSI3 contains the text of the glyph programs in the form of 'VTTTalk' code.
5"""
6from __future__ import print_function, division, absolute_import
7from fontTools.misc.py23 import *
8from fontTools import ttLib
9
10superclass = ttLib.getTableClass("TSI1")
11
12class table_T_S_I__3(superclass):
13
14	extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"}
15
16	indextable = "TSI2"
17