summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2011-11-11 18:35:42 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2011-11-11 18:35:42 (GMT)
commit992d9e081fab2061185b80c6decb57249b4612fe (patch)
treea32ce1f87e8e169aebba4f3f4212ad27c1924983 /Lib/test
parent490062b42cc998022124fd98efb171489acce429 (diff)
downloadcpython-992d9e081fab2061185b80c6decb57249b4612fe.zip
cpython-992d9e081fab2061185b80c6decb57249b4612fe.tar.gz
cpython-992d9e081fab2061185b80c6decb57249b4612fe.tar.bz2
Fix few typos.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py
index 7d1649c..2ba3ea5 100644
--- a/Lib/test/test_ast.py
+++ b/Lib/test/test_ast.py
@@ -290,7 +290,7 @@ class AST_Tests(unittest.TestCase):
self.assertEqual(x.body, body)
def test_nodeclasses(self):
- # Zero arguments constructor explicitely allowed
+ # Zero arguments constructor explicitly allowed
x = ast.BinOp()
self.assertEqual(x._fields, ('left', 'op', 'right'))