This file is indexed.

/usr/lib/python2.7/dist-packages/gnuradio/fosphor/__init__.py is in gr-fosphor 3.7.0.2.7b6b996-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# Copyright 2008,2009 Free Software Foundation, Inc.
#
# This application is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# This application is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#

# The presence of this file turns this directory into a Python package

'''
This is the GNU Radio FOSPHOR module. Place your Python package
description here (python/__init__.py).
'''

# import swig generated symbols into the fosphor namespace
from fosphor_swig import *

# import any pure python here
try:
    from wx_sink_c import wx_sink_c
except ImportError:
    # No Python WX or OpenGL support most likely
    import sys
    exc_info = sys.exc_info()
    def wx_sink_c(*args, **kwargs):
        raise exc_info[0], exc_info[1], exc_info[2]
#