This file is indexed.

/usr/share/pyshared/Scientific/QtWidgets/qt_fake.py is in python-scientific 2.8-4.

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
# Dummy module to make epydoc generate documentation even though
# Qt is not installed.

import sys
if sys.modules.has_key('epydoc'):

    class Qt:
        SolidLine=None
        SolidPattern=None

    class QWidget:
        pass

else:

    raise ImportError, "Please install PyQt"

del sys