/usr/lib/python3/dist-packages/tables/lrucacheExtension.py is in python3-tables 3.1.1-0ubuntu1.
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 | from warnings import warn
from tables.lrucacheextension import *
_warnmsg = ("lrucacheExtension is pending deprecation, import lrucacheextension instead. "
"You may use the pt2to3 tool to update your source code.")
warn(_warnmsg, DeprecationWarning, stacklevel=2)
|