diff options
author | bssyousefi <44493177+bssyousefi@users.noreply.github.com> | 2024-02-25 22:07:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 22:07:08 (GMT) |
commit | 6a3236fe2e61673cf9f819534afbf14a18678408 (patch) | |
tree | 835896790d43c90e7d1c66fcb78f96798679949a /Doc | |
parent | 8f5be78bce95deb338e2e1cf13a0a579b3b42dd2 (diff) | |
download | cpython-6a3236fe2e61673cf9f819534afbf14a18678408.zip cpython-6a3236fe2e61673cf9f819534afbf14a18678408.tar.gz cpython-6a3236fe2e61673cf9f819534afbf14a18678408.tar.bz2 |
gh-115799: Add missing double-quote in docs (#115884)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index e6309ae..ba13fd1 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -105,7 +105,7 @@ Printing and clearing parameters help format the warning message; they have the same meaning and values as in :c:func:`PyUnicode_FromFormat`. ``PyErr_WriteUnraisable(obj)`` is roughtly equivalent to - ``PyErr_FormatUnraisable("Exception ignored in: %R, obj)``. + ``PyErr_FormatUnraisable("Exception ignored in: %R", obj)``. If *format* is ``NULL``, only the traceback is printed. .. versionadded:: 3.13 |