This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/interfaces/__init__.py is in python-sagenb 1.0.1+ds1-2.

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
# -*- coding: utf-8 -*
#############################################################################
#
#       Copyright (C) 2009 William Stein <wstein@gmail.com>
#  Distributed under the terms of the GNU General Public License (GPL)
#  The full text of the GPL is available at:
#                  http://www.gnu.org/licenses/
#
#############################################################################

# interfaces to other math software

from .worksheet_process import WorksheetProcess

from .reference import WorksheetProcess_ReferenceImplementation

from .expect import (WorksheetProcess_ExpectImplementation,
                    WorksheetProcess_RemoteExpectImplementation)

from .limits import ProcessLimits