/usr/lib/python2.7/dist-packages/pandas/parser.py is in python-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.parser module is deprecated and will be "
"removed in a future version. Please import from "
"pandas.io.parser instead", FutureWarning, stacklevel=2)
from pandas._libs.parsers import na_values
from pandas.io.common import CParserError
|