This file is indexed.

/usr/lib/python3/dist-packages/pandas/tslib.py is in python3-pandas 0.22.0-4.

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
# flake8: noqa

import warnings
warnings.warn("The pandas.tslib module is deprecated and will be "
              "removed in a future version.", FutureWarning, stacklevel=2)
from pandas._libs.tslib import (Timestamp, Timedelta,
                               NaT, NaTType, OutOfBoundsDatetime)