summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst')
-rw-r--r--Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst b/Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst
deleted file mode 100644
index 7254a04..0000000
--- a/Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-Ensure that the value of :attr:`UnicodeEncodeError.start <UnicodeError.start>`
-retrieved by :c:func:`PyUnicodeEncodeError_GetStart` lies in
-``[0, max(0, objlen - 1)]`` where *objlen* is the length of
-:attr:`UnicodeEncodeError.object <UnicodeError.object>`. Similar
-arguments apply to :exc:`UnicodeDecodeError` and :exc:`UnicodeTranslateError`
-and their corresponding C interface. Patch by Bénédikt Tran.