This file is indexed.

/usr/lib/python2.7/dist-packages/backports/shutil_get_terminal_size/__init__.py is in python-backports-shutil-get-terminal-size 1.0.0-3.

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
"""A backport of the get_terminal_size function from Python 3.3's shutil."""

__title__ = "backports.shutil_get_terminal_size"
__version__ = "1.0.0"
__license__ = "MIT"
__author__ = "Christopher Rosell"
__copyright__ = "Copyright 2014 Christopher Rosell"

__all__ = ["get_terminal_size"]

from .get_terminal_size import get_terminal_size