This file is indexed.

/usr/lib/python2.7/dist-packages/debian_bundle/__init__.py is in python-debian 0.1.30.

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
import os
import warnings

warnings.warn("please use 'debian' instead of 'debian_bundle'",
              DeprecationWarning, stacklevel=2)

# Support "from debian_bundle import foo"
parent_dir = os.path.dirname(__path__[0])
__path__.append(os.path.join(parent_dir, "debian"))