]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115799: Add missing double-quote in docs (#115884)
authorbssyousefi <44493177+bssyousefi@users.noreply.github.com>
Sun, 25 Feb 2024 22:07:08 +0000 (17:07 -0500)
committerGitHub <noreply@github.com>
Sun, 25 Feb 2024 22:07:08 +0000 (14:07 -0800)
Doc/c-api/exceptions.rst

index e6309ae7614d34776473193629312ed8c20f7c11..ba13fd1b9973e03bfae96f7244007e4c5049729e 100644 (file)
@@ -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