This file is indexed.

/usr/share/pyshared/pandas/tests/test_tools.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
#import unittest

from pandas import DataFrame
from pandas.tools.describe import value_range

import numpy as np

def test_value_range():
    df = DataFrame(np.random.randn(5, 5))
    df.ix[0,2] = -5
    df.ix[2,0] = 5

    res = value_range(df)

    assert( res['Minimum'] == -5 )
    assert( res['Maximum'] == 5 )

    df.ix[0,1] = np.NaN

    assert( res['Minimum'] == -5 )
    assert( res['Maximum'] == 5 )