summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-17 19:51:10 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-17 19:51:10 (GMT)
commitd7943cb71d51bbf0e2ac715b08b8da2208d2800c (patch)
tree10dc34fe5400db1570ec731572fa3d7043f614c6 /Lib
parent79a922d6df18e0c0e508905aebc8f4fa28052aac (diff)
downloadcpython-d7943cb71d51bbf0e2ac715b08b8da2208d2800c.zip
cpython-d7943cb71d51bbf0e2ac715b08b8da2208d2800c.tar.gz
cpython-d7943cb71d51bbf0e2ac715b08b8da2208d2800c.tar.bz2
fix spelling
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_py3kwarn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py
index e6d38f2..07d5b34 100644
--- a/Lib/test/test_py3kwarn.py
+++ b/Lib/test/test_py3kwarn.py
@@ -133,7 +133,7 @@ class TestPy3KWarnings(unittest.TestCase):
'Also, note the returned format is different.'
with catch_warning() as w:
self.assertWarning(oct(Spam()), w, expected)
- expected = 'In 3.x, hex() converts the result of __index__ to hexidecimal.'
+ expected = 'In 3.x, hex() converts the result of __index__ to hexadecimal.'
with catch_warning() as w:
self.assertWarning(hex(Spam()), w, expected)