This file is indexed.

/usr/lib/python2.7/dist-packages/zmq/backend/cython/__init__.py is in python-zmq 15.2.0-0ubuntu4.

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
"""Python bindings for core 0MQ objects."""

# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Lesser GNU Public License (LGPL).

from . import (constants, error, message, context,
                      socket, utils, _poll, _version, _device )

__all__ = []
for submod in (constants, error, message, context,
               socket, utils, _poll, _version, _device):
    __all__.extend(submod.__all__)

from .constants import *
from .error import *
from .message import *
from .context import *
from .socket import *
from ._poll import *
from .utils import *
from ._device import *
from ._version import *