This file is indexed.

/usr/lib/python2.7/dist-packages/jupyter_client/__init__.py is in python-jupyter-client 5.2.2-1.

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
"""Client-side implementations of the Jupyter protocol"""

from ._version import version_info, __version__, protocol_version_info, protocol_version
from .connect import *
from .launcher import *
from .client import KernelClient
from .manager import KernelManager, run_kernel
from .blocking import BlockingKernelClient
from .multikernelmanager import MultiKernelManager