This file is indexed.

/usr/lib/python2.7/dist-packages/pandas/core/api.py is in python-pandas 0.13.1-2ubuntu2.

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
# pylint: disable=W0614,W0401,W0611

import numpy as np

from pandas.core.algorithms import factorize, match, unique, value_counts
from pandas.core.common import isnull, notnull
from pandas.core.categorical import Categorical
from pandas.core.format import set_eng_float_format
from pandas.core.index import Index, Int64Index, Float64Index, MultiIndex

from pandas.core.series import Series, TimeSeries
from pandas.core.frame import DataFrame
from pandas.core.panel import Panel
from pandas.core.panel4d import Panel4D
from pandas.core.groupby import groupby
from pandas.core.reshape import (pivot_simple as pivot, get_dummies,
                                 lreshape, wide_to_long)

WidePanel = Panel

from pandas.tseries.offsets import DateOffset
from pandas.tseries.tools import to_datetime
from pandas.tseries.index import (DatetimeIndex, Timestamp,
                                  date_range, bdate_range)
from pandas.tseries.period import Period, PeriodIndex

# legacy
from pandas.core.daterange import DateRange  # deprecated
from pandas.core.common import save, load  # deprecated, remove in 0.13
import pandas.core.datetools as datetools

from pandas.core.config import (get_option, set_option, reset_option,
                                describe_option, option_context, options)