This file is indexed.

/usr/lib/python3/dist-packages/multipletau/__init__.py is in python3-multipletau 0.1.4-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
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/python
# -*- coding: utf-8 -*-
""" 
    Provides a multiple-τ algorithm for Python 2.7 and Python 3.x and
    requires the package :py:mod:`numpy`.

    Multipe-τ correlation is computed on a logarithmic scale (less
    data points are computed) and is thus much faster than conventional
    correlation on a linear scale such as  :py:func:`numpy.correlate`.

    Recommended literature: 
    
    - Klaus Schaetzel and Rainer Peters; *Noise on multiple-tau photon
      correlation data*. Proc. SPIE 1430, Photon Correlation
      Spectroscopy: Multicomponent Systems, 109 (June 1, 1991);    
      http://doi.org/10.1117/12.44160
      
    - Thorsten Wohland, Rudolf Rigler, and Horst Vogel; *The Standard 
      Deviation in Fluorescence Correlation Spectroscopy*. Biophysical
      Journal, 80 (June 1, 2001);  
      http://dx.doi.org/10.1016/S0006-3495(01)76264-9
      
    The source code of multipletau is available at
    https://github.com/paulmueller/multipletau.
"""
from ._multipletau import *

__version__ = "0.1.4"
__author__ = "Paul Mueller"
__email__ = "paul.mueller@biotec.tu-dresden.de"
__license__ = "OpenBSD"