git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@2 4cde692c-a291-49d1-8350-778aa11640f8
15 lines
237 B
Python
15 lines
237 B
Python
import DefaultTable
|
|
import array
|
|
|
|
class table__f_p_g_m(DefaultTable.DefaultTable):
|
|
|
|
def decompile(self, data, ttFont):
|
|
self.fpgm = data
|
|
|
|
def compile(self, ttFont):
|
|
return self.fpgm
|
|
|
|
def __len__(self):
|
|
return len(self.fpgm)
|
|
|