From: Berker Peksag Date: Wed, 28 Sep 2016 14:21:52 +0000 (+0300) Subject: Issue #28300: Fix typos, patch by Shlomi Fish X-Git-Tag: v3.6.0b2~101^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c16387b17ff252001633712c6b1c118abcbfb72f;p=thirdparty%2FPython%2Fcpython.git Issue #28300: Fix typos, patch by Shlomi Fish --- diff --git a/Lib/idlelib/README.txt b/Lib/idlelib/README.txt index bc169c88004a..ff4450495af7 100644 --- a/Lib/idlelib/README.txt +++ b/Lib/idlelib/README.txt @@ -16,7 +16,7 @@ and omissions and lag behind changes in idlelib. IDLELIB FILES -Implemetation files not in IDLE MENU are marked (nim). +Implementation files not in IDLE MENU are marked (nim). Deprecated files and objects are listed separately as the end. Startup diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py index f9ee398899fe..4779a1330125 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)