summaryrefslogtreecommitdiffstats
path: root/Doc/library/code.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/code.rst')
-rw-r--r--Doc/library/code.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/code.rst b/Doc/library/code.rst
index c297160..8c3a3e8 100644
--- a/Doc/library/code.rst
+++ b/Doc/library/code.rst
@@ -27,7 +27,7 @@ build applications which provide an interactive interpreter prompt.
Closely emulate the behavior of the interactive Python interpreter. This class
builds on :class:`InteractiveInterpreter` and adds prompting using the familiar
- ``sys.ps1`` and ``sys.ps2``, and input buffering. If *local_exit* is True,
+ ``sys.ps1`` and ``sys.ps2``, and input buffering. If *local_exit* is true,
``exit()`` and ``quit()`` in the console will not raise :exc:`SystemExit`, but
instead return to the calling code.