/usr/share/pyshared/pandas/__init__.py is in python-pandas 0.7.0-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 24 25 26 27 28 29 30 31 32 33 34 | # pylint: disable-msg=W0614,W0401,W0611,W0622
__docformat__ = 'restructuredtext'
from datetime import datetime
import numpy as np
try:
import pandas._tseries as lib
except Exception, e: # pragma: no cover
if 'No module named' in str(e):
raise ImportError('C extensions not built: if you installed already '
'verify that you are not importing from the source '
'directory')
else:
raise
from pandas.version import version as __version__
from pandas.info import __doc__
from pandas.core.api import *
from pandas.sparse.api import *
from pandas.stats.api import *
from pandas.core.format import (set_printoptions, reset_printoptions,
set_eng_float_format)
from pandas.io.parsers import read_csv, read_table, read_clipboard, ExcelFile, ExcelWriter
from pandas.io.pytables import HDFStore
from pandas.util.testing import debug
from pandas.tools.merge import merge, concat
from pandas.tools.pivot import pivot_table, crosstab
from pandas.tools.describe import value_range
|