Save the font to optional path or to self.path.
(self, path=None)
| 1114 | groups = property(_get_groups) |
| 1115 | |
| 1116 | def save(self, path=None): |
| 1117 | """Save the font to optional path or to self.path.""" |
| 1118 | self.ttFont.save(path or self.path) |
| 1119 | |
| 1120 | def getAscender(self): # DrawBot compatible |
| 1121 | """Answer the ascender value in em-units from [hhea] table, as use by browser. |
no outgoing calls
no test coverage detected