From: Martin Panter Date: Thu, 28 Jul 2016 01:25:31 +0000 (+0000) Subject: Issue #27626: Further spelling fixes for 3.6 X-Git-Tag: v3.6.0a4~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=263893c2619c3df19770c0bf8c78bd1b427e3e5a;p=python Issue #27626: Further spelling fixes for 3.6 --- diff --git a/Lib/idlelib/idle_test/test_query.py b/Lib/idlelib/idle_test/test_query.py index d7372a305e..ec86868bd4 100644 --- a/Lib/idlelib/idle_test/test_query.py +++ b/Lib/idlelib/idle_test/test_query.py @@ -146,7 +146,7 @@ class ModuleNameTest(unittest.TestCase): "Test ModuleName subclass of Query." class Dummy_ModuleName: - entry_ok = query.ModuleName.entry_ok # Funtion being tested. + entry_ok = query.ModuleName.entry_ok # Function being tested. text0 = '' entry = Var() diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py index a82dedffe4..905ae63126 100644 --- a/Lib/test/test_fstring.py +++ b/Lib/test/test_fstring.py @@ -250,7 +250,7 @@ f'{a * x()}'""" ]) self.assertAllRaise(SyntaxError, "invalid syntax", - [# Invalid sytax inside a nested spec. + [# Invalid syntax inside a nested spec. "f'{4:{/5}}'", ])