Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / amd64 / html / python / lib / module-compiler.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="lib.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="lib.html" title='Python Library Reference' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="next" href="node791.html" />
<link rel="prev" href="compiler.html" />
<link rel="parent" href="compiler.html" />
<link rel="next" href="node791.html" />
<meta name='aesop' content='information' />
<title>19.1 The basic interface</title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="19. Python compiler package"
href="compiler.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="19. Python compiler package"
href="compiler.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="19.2 Limitations"
href="node791.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="compiler.html">19. Python compiler package</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="compiler.html">19. Python compiler package</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="node791.html">19.2 Limitations</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION0021100000000000000000">
19.1 The basic interface</A>
</H1>
<P>
<A NAME="module-compiler"></A>
<P>
The top-level of the package defines four functions. If you import
<tt class="module">compiler</tt>, you will get these functions and a collection of
modules contained in the package.
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-5020' xml:id='l2h-5020' class="function">parse</tt></b>(</nobr></td>
<td><var>buf</var>)</td></tr></table></dt>
<dd>
Returns an abstract syntax tree for the Python source code in <var>buf</var>.
The function raises SyntaxError if there is an error in the source
code. The return value is a <tt class="class">compiler.ast.Module</tt> instance that
contains the tree.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-5021' xml:id='l2h-5021' class="function">parseFile</tt></b>(</nobr></td>
<td><var>path</var>)</td></tr></table></dt>
<dd>
Return an abstract syntax tree for the Python source code in the file
specified by <var>path</var>. It is equivalent to
<code>parse(open(<var>path</var>).read())</code>.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-5022' xml:id='l2h-5022' class="function">walk</tt></b>(</nobr></td>
<td><var>ast, visitor</var><big>[</big><var>, verbose</var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Do a pre-order walk over the abstract syntax tree <var>ast</var>. Call the
appropriate method on the <var>visitor</var> instance for each node
encountered.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-5023' xml:id='l2h-5023' class="function">compile</tt></b>(</nobr></td>
<td><var>source, filename, mode, flags=None,
dont_inherit=None</var>)</td></tr></table></dt>
<dd>
Compile the string <var>source</var>, a Python module, statement or
expression, into a code object that can be executed by the exec
statement or <tt class="function">eval()</tt>. This function is a replacement for the
built-in <tt class="function">compile()</tt> function.
<P>
The <var>filename</var> will be used for run-time error messages.
<P>
The <var>mode</var> must be 'exec' to compile a module, 'single' to compile a
single (interactive) statement, or 'eval' to compile an expression.
<P>
The <var>flags</var> and <var>dont_inherit</var> arguments affect future-related
statements, but are not supported yet.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-5024' xml:id='l2h-5024' class="function">compileFile</tt></b>(</nobr></td>
<td><var>source</var>)</td></tr></table></dt>
<dd>
Compiles the file <var>source</var> and generates a .pyc file.
</dl>
<P>
The <tt class="module">compiler</tt> package contains the following modules:
<tt class="module"><a href="module-compiler.ast.html">ast</a></tt>, <tt class="module">consts</tt>, <tt class="module">future</tt>,
<tt class="module">misc</tt>, <tt class="module">pyassem</tt>, <tt class="module">pycodegen</tt>, <tt class="module">symbols</tt>,
<tt class="module">transformer</tt>, and <tt class="module"><a href="module-compiler.visitor.html">visitor</a></tt>.
<P>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="19. Python compiler package"
href="compiler.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="19. Python compiler package"
href="compiler.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="19.2 Limitations"
href="node791.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="compiler.html">19. Python compiler package</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="compiler.html">19. Python compiler package</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="node791.html">19.2 Limitations</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>