mirror of https://github.com/python/cpython
update simple explanation of parseFile()
This commit is contained in:
parent
76f42ac512
commit
f5bf77c3f8
|
@ -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}}
|
||||||
|
|
Loading…
Reference in New Issue