mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #11000 ast.parse doc fix (r88172) + tix fix (r88170)
This commit is contained in:
parent
0f2a61a11e
commit
e2248f9e6d
3 changed files with 8 additions and 8 deletions
|
@ -107,9 +107,9 @@ The abstract grammar is currently defined as follows:
|
|||
Apart from the node classes, :mod:`ast` module defines these utility functions
|
||||
and classes for traversing abstract syntax trees:
|
||||
|
||||
.. function:: parse(expr, filename='<unknown>', mode='exec')
|
||||
.. function:: parse(source, filename='<unknown>', mode='exec')
|
||||
|
||||
Parse an expression into an AST node. Equivalent to ``compile(expr,
|
||||
Parse the source into an AST node. Equivalent to ``compile(source,
|
||||
filename, mode, ast.PyCF_ONLY_AST)``.
|
||||
|
||||
|
||||
|
|
|
@ -503,8 +503,8 @@ Tix Commands
|
|||
|
||||
To view the current settings, the common usage is::
|
||||
|
||||
import Tix
|
||||
root = Tix.Tk()
|
||||
from tkinter import tix
|
||||
root = tix.Tk()
|
||||
print(root.tix_configure())
|
||||
|
||||
|
||||
|
|
|
@ -29,12 +29,12 @@ from _ast import *
|
|||
from _ast import __version__
|
||||
|
||||
|
||||
def parse(expr, filename='<unknown>', mode='exec'):
|
||||
def parse(source, filename='<unknown>', mode='exec'):
|
||||
"""
|
||||
Parse an expression into an AST node.
|
||||
Equivalent to compile(expr, filename, mode, PyCF_ONLY_AST).
|
||||
Parse the source into an AST node.
|
||||
Equivalent to compile(source, filename, mode, PyCF_ONLY_AST).
|
||||
"""
|
||||
return compile(expr, filename, mode, PyCF_ONLY_AST)
|
||||
return compile(source, filename, mode, PyCF_ONLY_AST)
|
||||
|
||||
|
||||
def literal_eval(node_or_string):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue