fonttools/Lib/xmlWriter.py
Cosimo Lupo c719da5bca [sstruct/xmlWriter]: issue a deprecation warning when the two top-level modules are imported
Part of #696

(These are a actually `UserWarning` instead of `DeprecationWarning`, as the latter are normally muted)
2016-10-08 17:21:36 +01:00

15 lines
407 B
Python

# Added back here for backward compatibility
from __future__ import print_function, division, absolute_import
from fontTools.misc.py23 import *
from fontTools.misc.xmlWriter import *
from fontTools.misc.xmlWriter import __doc__
import warnings
warnings.warn(
"Importing the stand-alone `xmlWriter` module is deprecated. "
"Use `from fontTools.misc import xmlWriter` instead.",
stacklevel=2)