This file is indexed.

/usr/lib/python3/dist-packages/defcon/pens/reverseContourPointPen.py is in python3-defcon 0.3.5-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
10
11
12
13
14
15
"""
PointPen for reversing the winding direction of contours.

NOTE: The module is deprecated and the ``ReverseContourPointPen`` class has
been moved to ``ufoLib.pointPen`` module.
"""

from ufoLib.pointPen import AbstractPointPen, ReverseContourPointPen
import warnings


warnings.warn(
    "Importing the `defcon.pens.reverseContourPointPen` module is deprecated. "
    "Use `from ufoLib.pointPen import ReverseContourPointPen` instead.",
    DeprecationWarning, stacklevel=2)