summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/ast.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-08-11 16:20:39 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2003-08-11 16:20:39 (GMT)
commitb2f89ee71a494b3b1aaaeef42d2b43bcf50735cd (patch)
tree8bfd22106bf807ca2352d79136844643e14b98bf /Lib/compiler/ast.py
parentcc9d004f818c932bbee1fafe22fd66c7aa290c6b (diff)
downloadcpython-b2f89ee71a494b3b1aaaeef42d2b43bcf50735cd.zip
cpython-b2f89ee71a494b3b1aaaeef42d2b43bcf50735cd.tar.gz
cpython-b2f89ee71a494b3b1aaaeef42d2b43bcf50735cd.tar.bz2
Comment typo fixes
Diffstat (limited to 'Lib/compiler/ast.py')
-rw-r--r--Lib/compiler/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py
index 8d69da6..a10225b 100644
--- a/Lib/compiler/ast.py
+++ b/Lib/compiler/ast.py
@@ -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