[Python-checkins] python/dist/src/Lib/compiler ast.py, 1.21,
1.22 visitor.py, 1.11, 1.12
akuchling at users.sourceforge.net
akuchling at users.sourceforge.net
Mon Aug 11 10:20:41 EDT 2003
Update of /cvsroot/python/python/dist/src/Lib/compiler
In directory sc8-pr-cvs1:/tmp/cvs-serv30061
Modified Files:
ast.py visitor.py
Log Message:
Comment typo fixes
Index: ast.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/compiler/ast.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** ast.py 23 Feb 2002 22:35:33 -0000 1.21
--- ast.py 11 Aug 2003 16:20:39 -0000 1.22
***************
*** 284,288 ****
class Expression(Node):
! # Expression is an artifical node class to support "eval"
nodes["expression"] = "Expression"
def __init__(self, node):
--- 284,288 ----
class Expression(Node):
! # Expression is an artificial node class to support "eval"
nodes["expression"] = "Expression"
def __init__(self, node):
Index: visitor.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/compiler/visitor.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** visitor.py 18 Apr 2002 16:26:40 -0000 1.11
--- visitor.py 11 Aug 2003 16:20:39 -0000 1.12
***************
*** 67,71 ****
This visitor-driver is only useful for development, when it's
! helpful to develop a visitor incremently, and get feedback on what
you still have to do.
"""
--- 67,71 ----
This visitor-driver is only useful for development, when it's
! helpful to develop a visitor incrementally, and get feedback on what
you still have to do.
"""
More information about the Python-checkins
mailing list