This file is indexed.

/usr/lib/python2.7/dist-packages/pandas/json.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
# flake8: noqa

import warnings
warnings.warn("The pandas.json module is deprecated and will be "
              "removed in a future version. Please import from "
              "pandas.io.json instead", FutureWarning, stacklevel=2)
from pandas._libs.json import dumps, loads