blob: ff6bde2ce7e1009aff311888400122f866aedb6d [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{code} ---
Fred Drake38e5d272000-04-03 20:13:55 +00002 Interpreter base classes}
Fred Drakeb91e9341998-07-23 17:59:49 +00003\declaremodule{standard}{code}
4
Fred Drake38e5d272000-04-03 20:13:55 +00005\modulesynopsis{Base classes for interactive Python interpreters.}
Fred Drakeb91e9341998-07-23 17:59:49 +00006
Guido van Rossum61c27031997-07-18 21:08:07 +00007
Fred Drake38e5d272000-04-03 20:13:55 +00008The \code{code} module provides facilities to implement
9read-eval-print loops in Python. Two classes and convenience
10functions are included which can be used to build applications which
11provide an interactive interpreter prompt.
Guido van Rossum61c27031997-07-18 21:08:07 +000012
Guido van Rossum61c27031997-07-18 21:08:07 +000013
Fred Drake38e5d272000-04-03 20:13:55 +000014\begin{classdesc}{InteractiveInterpreter}{\optional{locals}}
15This class deals with parsing and interpreter state (the user's
16namespace); it does not deal with input buffering or prompting or
17input file naming (the filename is always passed in explicitly).
18The optional \var{locals} argument specifies the dictionary in
19which code will be executed; it defaults to a newly created
20dictionary with key \code{'__name__'} set to \code{'__console__'}
21and key \code{'__doc__'} set to \code{None}.
22\end{classdesc}
23
24\begin{classdesc}{InteractiveConsole}{\optional{locals\optional{, filename}}}
25Closely emulate the behavior of the interactive Python interpreter.
26This class builds on \class{InteractiveInterpreter} and adds
27prompting using the familiar \code{sys.ps1} and \code{sys.ps2}, and
28input buffering.
29\end{classdesc}
30
31
32\begin{funcdesc}{interact}{\optional{banner\optional{,
33 readfunc\optional{, local}}}}
34Convenience function to run a read-eval-print loop. This creates a
35new instance of \class{InteractiveConsole} and sets \var{readfunc}
36to be used as the \method{raw_input()} method, if provided. If
37\var{local} is provided, it is passed to the
38\class{InteractiveConsole} constructor for use as the default
39namespace for the interpreter loop. The \method{interact()} method
40of the instance is then run with \var{banner} passed as the banner
41to use, if provided. The console object is discarded after use.
42\end{funcdesc}
43
44\begin{funcdesc}{compile_command}{source\optional{,
45 filename\optional{, symbol}}}
Guido van Rossum61c27031997-07-18 21:08:07 +000046This function is useful for programs that want to emulate Python's
47interpreter main loop (a.k.a. the read-eval-print loop). The tricky
48part is to determine when the user has entered an incomplete command
Fred Drake38e5d272000-04-03 20:13:55 +000049that can be completed by entering more text (as opposed to a
50complete command or a syntax error). This function
51\emph{almost} always makes the same decision as the real interpreter
52main loop.
Guido van Rossum61c27031997-07-18 21:08:07 +000053
Fred Drake38e5d272000-04-03 20:13:55 +000054\var{source} is the source string; \var{filename} is the optional
55filename from which source was read, defaulting to \code{'<input>'};
56and \var{symbol} is the optional grammar start symbol, which should
57be either \code{'single'} (the default) or \code{'eval'}.
Guido van Rossum61c27031997-07-18 21:08:07 +000058
Fred Drake38e5d272000-04-03 20:13:55 +000059Returns a code object (the same as \code{compile(\var{source},
60\var{filename}, \var{symbol})}) if the command is complete and
61valid; \code{None} if the command is incomplete; raises
62\exception{SyntaxError} if the command is complete and contains a
Michael W. Hudson53da3172001-08-27 20:02:17 +000063syntax error, or raises \exception{OverflowError} or
64\exception{ValueError} if the command cotains an invalid literal.
Guido van Rossum61c27031997-07-18 21:08:07 +000065\end{funcdesc}
Fred Drake38e5d272000-04-03 20:13:55 +000066
67
68\subsection{Interactive Interpreter Objects
69 \label{interpreter-objects}}
70
71\begin{methoddesc}{runsource}{source\optional{, filename\optional{, symbol}}}
72Compile and run some source in the interpreter.
73Arguments are the same as for \function{compile_command()}; the
74default for \var{filename} is \code{'<input>'}, and for
75\var{symbol} is \code{'single'}. One several things can happen:
76
77\begin{itemize}
78\item
79The input is incorrect; \function{compile_command()} raised an
80exception (\exception{SyntaxError} or \exception{OverflowError}). A
81syntax traceback will be printed by calling the
82\method{showsyntaxerror()} method. \method{runsource()} returns
83\code{0}.
84
85\item
86The input is incomplete, and more input is required;
87\function{compile_command()} returned \code{None}.
88\method{runsource()} returns \code{1}.
89
90\item
91The input is complete; \function{compile_command()} returned a code
92object. The code is executed by calling the \method{runcode()} (which
93also handles run-time exceptions, except for \exception{SystemExit}).
94\method{runsource()} returns \code{0}.
95\end{itemize}
96
97The return value can be used to decide whether to use
98\code{sys.ps1} or \code{sys.ps2} to prompt the next line.
99\end{methoddesc}
100
101\begin{methoddesc}{runcode}{code}
102Execute a code object.
103When an exception occurs, \method{showtraceback()} is called to
104display a traceback. All exceptions are caught except
Thomas Woutersf8316632000-07-16 19:01:10 +0000105\exception{SystemExit}, which is allowed to propagate.
Fred Drake38e5d272000-04-03 20:13:55 +0000106
107A note about \exception{KeyboardInterrupt}: this exception may occur
108elsewhere in this code, and may not always be caught. The caller
109should be prepared to deal with it.
110\end{methoddesc}
111
112\begin{methoddesc}{showsyntaxerror}{\optional{filename}}
113Display the syntax error that just occurred. This does not display
114a stack trace because there isn't one for syntax errors.
115If \var{filename} is given, it is stuffed into the exception instead
116of the default filename provided by Python's parser, because it
117always uses \code{'<string>'} when reading from a string.
118The output is written by the \method{write()} method.
119\end{methoddesc}
120
121\begin{methoddesc}{showtraceback}{}
122Display the exception that just occurred. We remove the first stack
123item because it is within the interpreter object implementation.
124The output is written by the \method{write()} method.
125\end{methoddesc}
126
127\begin{methoddesc}{write}{data}
Fred Drake6ba0a3c2000-09-14 20:42:53 +0000128Write a string to the standard error stream (\code{sys.stderr}).
129Derived classes should override this to provide the appropriate output
130handling as needed.
Fred Drake38e5d272000-04-03 20:13:55 +0000131\end{methoddesc}
132
133
134\subsection{Interactive Console Objects
135 \label{console-objects}}
136
137The \class{InteractiveConsole} class is a subclass of
138\class{InteractiveInterpreter}, and so offers all the methods of the
139interpreter objects as well as the following additions.
140
141\begin{methoddesc}{interact}{\optional{banner}}
142Closely emulate the interactive Python console.
143The optional banner argument specify the banner to print before the
144first interaction; by default it prints a banner similar to the one
145printed by the standard Python interpreter, followed by the class
146name of the console object in parentheses (so as not to confuse this
147with the real interpreter -- since it's so close!).
148\end{methoddesc}
149
150\begin{methoddesc}{push}{line}
151Push a line of source text to the interpreter.
152The line should not have a trailing newline; it may have internal
153newlines. The line is appended to a buffer and the interpreter's
154\method{runsource()} method is called with the concatenated contents
155of the buffer as source. If this indicates that the command was
156executed or invalid, the buffer is reset; otherwise, the command is
157incomplete, and the buffer is left as it was after the line was
158appended. The return value is \code{1} if more input is required,
159\code{0} if the line was dealt with in some way (this is the same as
160\method{runsource()}).
161\end{methoddesc}
162
163\begin{methoddesc}{resetbuffer}{}
164Remove any unhandled source text from the input buffer.
165\end{methoddesc}
166
167\begin{methoddesc}{raw_input}{\optional{prompt}}
168Write a prompt and read a line. The returned line does not include
169the trailing newline. When the user enters the \EOF{} key sequence,
170\exception{EOFError} is raised. The base implementation uses the
171built-in function \function{raw_input()}; a subclass may replace this
172with a different implementation.
173\end{methoddesc}