diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:09:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:09:00 (GMT) |
commit | b33336f65014f32c3e9873c32618a3bf656f3445 (patch) | |
tree | 023edd04ecc9b83b48a83594f2fd4f69d7ef709a /Doc/library/code.rst | |
parent | 7378d6374c286c86daf4389fbbb4ee2d52ac3401 (diff) | |
download | cpython-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.rst | 10 |
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]]) |