update simple explanation of parseFile()

This commit is contained in:
Jeremy Hylton 2001-08-14 22:38:03 +00:00
parent 76f42ac512
commit f5bf77c3f8
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ contains the tree.
\begin{funcdesc}{parseFile}{path} \begin{funcdesc}{parseFile}{path}
Return an abstract syntax tree for the Python source code in the file Return an abstract syntax tree for the Python source code in the file
specified by \var{path}. It is equivalent to \code{parse(open(path))}. specified by \var{path}. It is equivalent to \code{parse(open(path).read())}.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{walk}{ast, visitor, \optional{verbose=None}} \begin{funcdesc}{walk}{ast, visitor, \optional{verbose=None}}