We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c8773 commit 1dd135cCopy full SHA for 1dd135c
docs/conf.py
@@ -55,6 +55,10 @@
55
pattern=r'(Python #|bpo-)(?P<python>\d+)',
56
url='https://bugs.python.org/issue{python}',
57
),
58
+ dict(
59
+ pattern=r'\bpython/cpython#(?P<cpython>\d+)',
60
+ url='{GH}/python/cpython/issues/{cpython}',
61
+ ),
62
dict(
63
pattern=r'Interop #(?P<interop>\d+)',
64
url='{GH}/pypa/interoperability-peps/issues/{interop}',
newsfragments/4265.feature.rst
@@ -0,0 +1,3 @@
1
+Explicitly use ``encoding="locale"`` for ``.pth`` files whenever possible,
2
+to reduce ``EncodingWarnings``.
3
+This avoid errors with UTF-8 (see discussion in python/cpython#77102).
0 commit comments