This file is indexed.

/usr/share/pyshared/pandas/rpy/vars.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
import pandas.rpy.util as util

class VAR(object):
    """

    Parameters
    ----------
    y :
    p :
    type : {"const", "trend", "both", "none"}
    season :
    exogen :
    lag_max :
    ic : {"AIC", "HQ", "SC", "FPE"}
        Information criterion to use, if lag_max is not None
    """
    def __init__(y, p=1, type="none", season=None, exogen=None,
                 lag_max=None, ic=None):
        pass