* Replaced all from ...py23 import * with explicit name imports, or removed completely when possible. * Replaced tounicode() with tostr() * Changed all BytesIO ans StringIO imports to from io import ..., replaced all UnicodeIO with StringIO. * Replaced all unichr() with chr() * Misc minor tweaks and fixes
17 lines
330 B
Python
17 lines
330 B
Python
from fontTools.ttLib.tables._v_m_t_x import table__v_m_t_x
|
|
import _h_m_t_x_test
|
|
import unittest
|
|
|
|
|
|
class VmtxTableTest(_h_m_t_x_test.HmtxTableTest):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.tableClass = table__v_m_t_x
|
|
cls.tag = "vmtx"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
sys.exit(unittest.main())
|