From b380750673c7e04b10b435a212c431a7d551443b Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Thu, 15 Jan 2026 16:57:01 -0800 Subject: [PATCH] PEP 788: Fix a typo --- peps/pep-0788.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peps/pep-0788.rst b/peps/pep-0788.rst index 5c328e6b815..9cb3c0f22f5 100644 --- a/peps/pep-0788.rst +++ b/peps/pep-0788.rst @@ -39,7 +39,7 @@ interpreter by preventing finalization. For example: // Now we can call Python code, without worrying about the thread // hanging due to finalization. - if (PyRun_SimpleString("print('My hovercraft is full of eels') < 0) { + if (PyRun_SimpleString("print('My hovercraft is full of eels')") < 0) { PyErr_Print(); }