/usr/lib/python3/dist-packages/pandas/lib.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 8 | # flake8: noqa
import warnings
warnings.warn("The pandas.lib module is deprecated and will be "
"removed in a future version. These are private functions "
"and can be accessed from pandas._libs.lib instead",
FutureWarning, stacklevel=2)
from pandas._libs.lib import *
|