/usr/share/pyshared/spyderlib/pyplot.py is in python-spyderlib 2.2.5+dfsg-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 | # -*- coding:utf-8 -*-
"""
Importing guiqwt's pyplot module or matplotlib's pyplot
"""
try:
from guiqwt.pyplot import *
except ImportError:
from matplotlib.pyplot import *
|