[Python-checkins] cpython (3.5): Issue #28300: Fix typos, patch by Shlomi Fish

berker.peksag python-checkins at python.org
Wed Sep 28 10:21:00 EDT 2016


https://hg.python.org/cpython/rev/ce19dcce84fe
changeset:   104127:ce19dcce84fe
branch:      3.5
parent:      104124:11c3d6a8f5fd
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Wed Sep 28 17:21:52 2016 +0300
summary:
  Issue #28300: Fix typos, patch by Shlomi Fish

files:
  Lib/idlelib/README.txt    |  2 +-
  Lib/test/test_argparse.py |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/idlelib/README.txt b/Lib/idlelib/README.txt
--- a/Lib/idlelib/README.txt
+++ b/Lib/idlelib/README.txt
@@ -16,7 +16,7 @@
 
 
 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
--- a/Lib/test/test_argparse.py
+++ b/Lib/test/test_argparse.py
@@ -4550,7 +4550,7 @@
         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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list