This file is indexed.

/usr/share/pyshared/pandas/core/api.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
# pylint: disable=W0614,W0401,W0611

import numpy as np

from pandas.core.datetools import DateOffset
import pandas.core.datetools as datetools

from pandas.core.common import isnull, notnull, save, load
from pandas.core.format import set_printoptions
from pandas.core.index import Index, Int64Index, Factor, MultiIndex
from pandas.core.daterange import DateRange
from pandas.core.series import Series, TimeSeries
from pandas.core.frame import DataFrame
from pandas.core.panel import Panel
from pandas.core.groupby import groupby
from pandas.core.reshape import pivot_simple as pivot

DataMatrix = DataFrame
WidePanel = Panel