1 """ TSI{0,1,2,3,5} are private tables used by Microsoft Visual TrueType (VTT) 2 tool to store its hinting source data. 3 4 TSI2 is the index table containing the lengths and offsets for the glyph 5 programs that are contained in the TSI3 table. It uses the same format as 6 the TSI0 table. 7 """ 8 from __future__ import print_function, division, absolute_import 9 from fontTools.misc.py23 import * 10 from fontTools import ttLib 11 12 superclass = ttLib.getTableClass("TSI0") 13 14 class table_T_S_I__2(superclass): 15 16 dependencies = ["TSI3"] 17