This file is indexed.

/usr/lib/python2.7/dist-packages/cogent/maths/stats/__init__.py is in python-cogent 1.9-9.

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
#!/usr/bin/env python
"""Provides statistical tests and distributions.

Also provides NumberList and FrequencyDistribution, two classes for
working with statistical data.
"""
__all__ = ['alpha_diversity', 'distribution', 'histogram',
    'information_criteria', 'kendall', 'ks',  'rarefaction', 'special', 'test',
    'util']

# GAH: this is a temporary introduction, so users get notice of structure change and
# renaming of this function
from distribution import chi_high as chisqprob

__author__ = ""
__copyright__ = "Copyright 2007-2016, The Cogent Project"
__credits__ = ["Gavin Huttley", "Rob Knight", "Sandra Smit",
                    "Catherine Lozupone", "Micah Hamady"]
__license__ = "GPL"
__version__ = "1.9"
__maintainer__ = "Rob Knight"
__email__ = "rob@spot.colorado.edu"
__status__ = "Production"