/usr/share/pyshared/guiqwt/transitional.py is in python-guiqwt 2.3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # -*- coding: utf-8 -*-
#
# Copyright © 2009-2011 CEA
# Pierre Raybaut
# Licensed under the terms of the CECILL License
# (see guiqwt/__init__.py for details)
"""
guiqwt.transitional
-------------------
The purpose of this transitional package is to regroup all the references to
the ``PyQwt`` library.
No other ``guiqwt`` module should import ``PyQwt`` or use any of its
interfaces directly.
"""
from PyQt4.Qwt5 import (QwtPlot, QwtSymbol, QwtLinearScaleEngine,
QwtLog10ScaleEngine, QwtText, QwtPlotCanvas,
QwtLinearColorMap, QwtDoubleInterval, toQImage,
QwtPlotCurve, QwtPlotGrid, QwtPlotItem, QwtScaleMap,
QwtPlotMarker, QwtPlotPrintFilter)
|