Other metamorphosis types are not yet supported and will raise an error upon decompilation. The TTX tool catches the error and continues to emit a hexdump of the table contents, just as before this change.
9 lines
269 B
Python
9 lines
269 B
Python
from __future__ import print_function, division, absolute_import
|
|
from fontTools.misc.py23 import *
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6mort.html
|
|
class table__m_o_r_t(BaseTTXConverter):
|
|
pass
|