summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2005-03-22 11:22:38 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2005-03-22 11:22:38 (GMT)
commitc448a91ee855ee9c24ecf3e66410e04ae3c6ce98 (patch)
tree1d411d7a608654020479847b364daa92bf486b77 /Lib
parentabc1566eab0b21c066df2e19e28fe0ea3beb2e5e (diff)
downloadcpython-c448a91ee855ee9c24ecf3e66410e04ae3c6ce98.zip
cpython-c448a91ee855ee9c24ecf3e66410e04ae3c6ce98.tar.gz
cpython-c448a91ee855ee9c24ecf3e66410e04ae3c6ce98.tar.bz2
Fix typo.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_deque.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_deque.py b/Lib/test/test_deque.py
index 7e80e8c..61919cb 100644
--- a/Lib/test/test_deque.py
+++ b/Lib/test/test_deque.py
@@ -218,7 +218,7 @@ class TestBasic(unittest.TestCase):
self.assertRaises(ValueError, d.remove, 'c')
self.assertEqual(d, deque('abdefghij'))
- # Handle comparision errors
+ # Handle comparison errors
d = deque(['a', 'b', BadCmp(), 'c'])
e = deque(d)
self.assertRaises(RuntimeError, d.remove, 'c')