• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""fontTools.ttLib -- a package for dealing with TrueType fonts."""
2
3from fontTools.misc.loggingTools import deprecateFunction
4import logging
5
6
7log = logging.getLogger(__name__)
8
9class TTLibError(Exception): pass
10
11@deprecateFunction("use logging instead", category=DeprecationWarning)
12def debugmsg(msg):
13	import time
14	print(msg + time.strftime("  (%H:%M:%S)", time.localtime(time.time())))
15
16from fontTools.ttLib.ttFont import *
17from fontTools.ttLib.ttCollection import TTCollection
18