2015-04-14 17:26:59 -07:00
|
|
|
from __future__ import print_function, division, absolute_import
|
|
|
|
from fontTools.misc.py23 import *
|
2016-01-24 14:20:59 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
# add a do-nothing handler to the libary's top-level logger, to avoid
|
|
|
|
# "no handlers could be found" error if client doesn't configure logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
log.addHandler(logging.NullHandler())
|
2015-04-14 17:26:59 -07:00
|
|
|
|
2015-08-31 18:57:15 +01:00
|
|
|
version = "3.0"
|