This file is indexed.

/usr/lib/python2.7/dist-packages/zmq/green/eventloop/zmqstream.py is in python-zmq 14.0.1-1build2.

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
from zmq.eventloop.zmqstream import *

from zmq.green.eventloop.ioloop import IOLoop

RealZMQStream = ZMQStream

class ZMQStream(RealZMQStream):
    
    def __init__(self, socket, io_loop=None):
        io_loop = io_loop or IOLoop.instance()
        super(ZMQStream, self).__init__(socket, io_loop=io_loop)