This file is indexed.

/usr/lib/python3/dist-packages/jupyter_console/_version.py is in python3-jupyter-console 5.0.0-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
10
""" For beta/alpha/rc releases, the version number for a beta is X.Y.ZbN 
**without dots between the last 'micro' number and b**. N is the number of
the beta released i.e. 1, 2, 3 ...

See PEP 440 https://www.python.org/dev/peps/pep-0440/
"""

version_info = (5, 0, 0, '')

__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])