qt4_compat.py 401 Bytes
Newer Older
xuebingbing's avatar
xuebingbing committed
1 2 3 4 5 6 7 8 9 10
import warnings
from matplotlib.cbook import mplDeprecation
# bulk-imports because we are pretending that file is this file
from .qt_compat import *
_warn_str = ("This module has been deprecated in 1.4 in favor "
             "of matplotlib.backends.qt_compat\n"
             "This module will be removed in 1.5, please update "
             "your imports.")

warnings.warn(_warn_str, mplDeprecation)