This file is indexed.

/usr/lib/python2.7/dist-packages/chaco/tools/drag_tool.py is in python-chaco 4.5.0-1.

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
9
# This is a duplicate of the enable.DragTool class and will be
# removed in future versions.  Please import DragTool directly
# from enable.

import warnings
warnings.warn("chaco.tools.DragTool has been removed."
              "Use enable.tools.DragTool instead.", DeprecationWarning)

from enable.tools.drag_tool import DragTool