[Python-checkins] [doc] Fix typo c-api/exceptions.rst (GH-27847)

ambv webhook-mailer at python.org
Mon Aug 23 15:17:44 EDT 2021


https://github.com/python/cpython/commit/dcbf7ff6a700b63e637a0445d68866670a398024
commit: dcbf7ff6a700b63e637a0445d68866670a398024
branch: main
author: Sunny Bean <ptq008 at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2021-08-23T21:17:40+02:00
summary:

[doc] Fix typo c-api/exceptions.rst (GH-27847)

Co-authored-by: Tianqing Peng <pengtianqing at yimian.com.cn>

files:
M Doc/c-api/exceptions.rst

diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst
index 525a773b7c768f..5d90248f85a5d4 100644
--- a/Doc/c-api/exceptions.rst
+++ b/Doc/c-api/exceptions.rst
@@ -100,7 +100,7 @@ For convenience, some of these functions will always return a
    This is the most common way to set the error indicator.  The first argument
    specifies the exception type; it is normally one of the standard exceptions,
    e.g. :c:data:`PyExc_RuntimeError`.  You need not increment its reference count.
-   The second argument is an error message; it is decoded from ``'utf-8``'.
+   The second argument is an error message; it is decoded from ``'utf-8'``.
 
 
 .. c:function:: void PyErr_SetObject(PyObject *type, PyObject *value)



More information about the Python-checkins mailing list