This file is indexed.

/usr/lib/python3/dist-packages/wormhole/__init__.py is in magic-wormhole 0.10.3-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
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

from .wormhole import create
from ._rlcompleter import input_with_completion

__all__ = ["create", "input_with_completion", "__version__"]