summaryrefslogtreecommitdiff
path: root/Lib/test/test_argparse.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-28 17:21:52 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-09-28 17:21:52 +0300
commitc16387b17ff252001633712c6b1c118abcbfb72f (patch)
tree018fd93ca2bb03fc28b91daf0d72e67bf9608a39 /Lib/test/test_argparse.py
parentde55c612fb3176fad9dd4b17906a03baa487b5e1 (diff)
downloadcpython-git-c16387b17ff252001633712c6b1c118abcbfb72f.tar.gz
Issue #28300: Fix typos, patch by Shlomi Fish
Diffstat (limited to 'Lib/test/test_argparse.py')
-rw-r--r--Lib/test/test_argparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py
index f9ee398899..4779a13301 100644
--- a/Lib/test/test_argparse.py
+++ b/Lib/test/test_argparse.py
@@ -4550,7 +4550,7 @@ class TestNamespace(TestCase):
self.assertTrue(ns2 != ns3)
self.assertTrue(ns2 != ns4)
- def test_equality_returns_notimplemeted(self):
+ def test_equality_returns_notimplemented(self):
# See issue 21481
ns = argparse.Namespace(a=1, b=2)
self.assertIs(ns.__eq__(None), NotImplemented)