https://github.com/python/cpython/commit/8fa5ecec01337215bc7baa62c9c16488ecd854fb
commit: 8fa5ecec01337215bc7baa62c9c16488ecd854fb
branch: main
author: Bénédikt Tran <[email protected]>
committer: iritkatriel <[email protected]>
date: 2024-12-08T13:47:22Z
summary:

gh-123378: fix post-merge typos in comments and NEWS (#127739)

files:
M Misc/NEWS.d/next/C_API/2024-08-27-09-07-56.gh-issue-123378.JJ6n_u.rst
M Objects/exceptions.c

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
index 2cfb8b8a1e245a..7254a04f61843d 100644
--- 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
@@ -1,5 +1,5 @@
 Ensure that the value of :attr:`UnicodeEncodeError.start <UnicodeError.start>`
-retrieved by :c:func:`PyUnicodeEncodeError_GetStart` lie in
+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`
diff --git a/Objects/exceptions.c b/Objects/exceptions.c
index 124b591ee3a13f..287cbc25305964 100644
--- a/Objects/exceptions.c
+++ b/Objects/exceptions.c
@@ -2712,7 +2712,7 @@ set_unicodefromstring(PyObject **attr, const char *value)
  * Adjust the (inclusive) 'start' value of a UnicodeError object.
  *
  * The 'start' can be negative or not, but when adjusting the value,
- * we clip it in [0, max(0, objlen - 1)] but do not intepret it as
+ * we clip it in [0, max(0, objlen - 1)] and do not interpret it as
  * a relative offset.
  */
 static inline Py_ssize_t
@@ -2732,8 +2732,8 @@ unicode_error_adjust_start(Py_ssize_t start, Py_ssize_t 
objlen)
  * Adjust the (exclusive) 'end' value of a UnicodeError object.
  *
  * The 'end' can be negative or not, but when adjusting the value,
- * we clip it in [min(1, objlen), max(min(1, objlen), objlen)] but
- * do not intepret it as a relative offset.
+ * we clip it in [min(1, objlen), max(min(1, objlen), objlen)] and
+ * do not interpret it as a relative offset.
  */
 static inline Py_ssize_t
 unicode_error_adjust_end(Py_ssize_t end, Py_ssize_t objlen)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to