diff --git a/Lib/fontTools/pens/pointInsidePen.py b/Lib/fontTools/pens/pointInsidePen.py index 47e364383..3311841bd 100644 --- a/Lib/fontTools/pens/pointInsidePen.py +++ b/Lib/fontTools/pens/pointInsidePen.py @@ -187,4 +187,6 @@ class PointInsidePen(BasePen): self.lineTo(self.firstPoint) self.firstPoint = None - _endPath = _closePath + def _endPath(self): + """Insideness is not defined for open contours.""" + raise NotImplementedError