This file is indexed.

/usr/lib/python2.7/dist-packages/gevent/wsgi.py is in python-gevent 1.1.0-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
"""Backwards compatibility alias for :mod:`gevent.pywsgi`.

In the past, this used libevent's http support, but that was dropped
with the introduction of libev. libevent's http support had several
limitations, including not supporting stream, not supporting
pipelining, and not supporting SSL.

.. deprecated:: 1.1
   Use :mod:`gevent.pywsgi`
"""

from gevent.pywsgi import *
import gevent.pywsgi as _pywsgi
__all__ = _pywsgi.__all__
del _pywsgi