This file is indexed.

/usr/lib/python2.7/dist-packages/zope/testing/testrunner.py is in python-zope.testing 4.1.2-0ubuntu7.

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
import warnings
warnings.warn('zope.testing.testrunner is deprecated in favour of '
              'zope.testrunner', DeprecationWarning, stacklevel=2)

try:
    from zope import testrunner
    import zope.testing
    # Now replace this module with the right one:
    zope.testing.testrunner = testrunner
except ImportError:
    pass