ports/devel/py-pip/files/extra-patch-python36
Po-Chuan Hsieh 86c8db870a
devel/py-pip: Fix build with DOCS option enabled on Python 3.6
PR:		255579
Reported by:	John Hein <jcfyecrayz@liamekaens.com>
2021-05-07 17:53:01 +08:00

12 lines
344 B
Plaintext

--- docs/docs_feedback_sphinxext.py.orig 2021-01-23 11:51:53 UTC
+++ docs/docs_feedback_sphinxext.py
@@ -1,6 +1,7 @@
+# -*- coding: future_annotations -*-
"""A sphinx extension for collecting per doc feedback."""
-from __future__ import annotations
+import future_annotations
from itertools import chain
from typing import TYPE_CHECKING