Correct a couple of unbalanced parenthesis. (GH-10779)

This commit is contained in:
Andre Delfino 2018-12-05 16:45:30 -03:00 committed by Serhiy Storchaka
parent 1ce853f377
commit 55f41e45b4
11 changed files with 15 additions and 15 deletions

View file

@ -277,7 +277,7 @@ However sometimes you have to run the embedded Python interpreter in the same
thread as your rest application and you can't allow the
:c:func:`PyRun_InteractiveLoop` to stop while waiting for user input. The one
solution then is to call :c:func:`PyParser_ParseString` and test for ``e.error``
equal to ``E_EOF``, which means the input is incomplete). Here's a sample code
equal to ``E_EOF``, which means the input is incomplete. Here's a sample code
fragment, untested, inspired by code from Alex Farber::
#include <Python.h>