summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-12-28 11:02:46 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-12-28 11:02:46 (GMT)
commitb1dbd10c425716ba94d0e62f8372aa5234aab5d1 (patch)
tree7bd65445ea67811d7b4548e678de3986591b84a8
parent68eb464bc7d8d04f9e017085648e4e6f6d690d41 (diff)
downloadcpython-b1dbd10c425716ba94d0e62f8372aa5234aab5d1.zip
cpython-b1dbd10c425716ba94d0e62f8372aa5234aab5d1.tar.gz
cpython-b1dbd10c425716ba94d0e62f8372aa5234aab5d1.tar.bz2
Issue #9738: Fix typo, ASCII-encoding string => ASCII-encoded string
-rw-r--r--Doc/c-api/exceptions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst
index d26e120..4c946c1 100644
--- a/Doc/c-api/exceptions.rst
+++ b/Doc/c-api/exceptions.rst
@@ -148,7 +148,7 @@ in various ways. There is a separate error indicator for each thread.
This function sets the error indicator and returns *NULL*. *exception*
should be a Python exception class. The *format* and subsequent
parameters help format the error message; they have the same meaning and
- values as in :c:func:`PyUnicode_FromFormat`. *format* is an ASCII-encoding
+ values as in :c:func:`PyUnicode_FromFormat`. *format* is an ASCII-encoded
string.