summaryrefslogtreecommitdiffstats
path: root/Doc/library/code.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-10-13 20:09:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-10-13 20:09:00 (GMT)
commitb33336f65014f32c3e9873c32618a3bf656f3445 (patch)
tree023edd04ecc9b83b48a83594f2fd4f69d7ef709a /Doc/library/code.rst
parent7378d6374c286c86daf4389fbbb4ee2d52ac3401 (diff)
downloadcpython-b33336f65014f32c3e9873c32618a3bf656f3445.zip
cpython-b33336f65014f32c3e9873c32618a3bf656f3445.tar.gz
cpython-b33336f65014f32c3e9873c32618a3bf656f3445.tar.bz2
Issue #18758: Fixed and improved cross-references.
Diffstat (limited to 'Doc/library/code.rst')
-rw-r--r--Doc/library/code.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/code.rst b/Doc/library/code.rst
index 38e26bc..698fb11 100644
--- a/Doc/library/code.rst
+++ b/Doc/library/code.rst
@@ -33,11 +33,11 @@ build applications which provide an interactive interpreter prompt.
Convenience function to run a read-eval-print loop. This creates a new instance
of :class:`InteractiveConsole` and sets *readfunc* to be used as the
- :meth:`raw_input` method, if provided. If *local* is provided, it is passed to
- the :class:`InteractiveConsole` constructor for use as the default namespace for
- the interpreter loop. The :meth:`interact` method of the instance is then run
- with *banner* passed as the banner to use, if provided. The console object is
- discarded after use.
+ :meth:`InteractiveConsole.raw_input` method, if provided. If *local* is
+ provided, it is passed to the :class:`InteractiveConsole` constructor for
+ use as the default namespace for the interpreter loop. The :meth:`interact`
+ method of the instance is then run with *banner* passed as the banner to
+ use, if provided. The console object is discarded after use.
.. function:: compile_command(source[, filename[, symbol]])