mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Comment typo fixes
This commit is contained in:
parent
cc9d004f81
commit
b2f89ee71a
2 changed files with 2 additions and 2 deletions
|
@ -283,7 +283,7 @@ class Module(Node):
|
|||
return "Module(%s, %s)" % (repr(self.doc), repr(self.node))
|
||||
|
||||
class Expression(Node):
|
||||
# Expression is an artifical node class to support "eval"
|
||||
# Expression is an artificial node class to support "eval"
|
||||
nodes["expression"] = "Expression"
|
||||
def __init__(self, node):
|
||||
self.node = node
|
||||
|
|
|
@ -66,7 +66,7 @@ class ExampleASTVisitor(ASTVisitor):
|
|||
"""Prints examples of the nodes that aren't visited
|
||||
|
||||
This visitor-driver is only useful for development, when it's
|
||||
helpful to develop a visitor incremently, and get feedback on what
|
||||
helpful to develop a visitor incrementally, and get feedback on what
|
||||
you still have to do.
|
||||
"""
|
||||
examples = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue