diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
commit | dfa4e045a363fd1dd31c1d57002fc78c10de85a2 (patch) | |
tree | 3f044e4d37129fb3dd70d1535cad09c2f78d9563 /Lib | |
parent | a468db9b0bd8d17575923b91db5fbc4a222d4252 (diff) | |
parent | 4882cacab6bcaf90ac496fc8878987598e7665c1 (diff) | |
download | cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.zip cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.gz cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.bz2 |
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/SearchEngine.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/idle_test/mock_tk.py | 2 | ||||
-rw-r--r-- | Lib/test/decimaltestdata/exp.decTest | 2 | ||||
-rw-r--r-- | Lib/test/script_helper.py | 2 | ||||
-rw-r--r-- | Lib/test/test_doctest.py | 4 | ||||
-rw-r--r-- | Lib/test/test_email/__init__.py | 2 | ||||
-rw-r--r-- | Lib/test/test_socket.py | 2 | ||||
-rw-r--r-- | Lib/test/test_threading.py | 2 | ||||
-rw-r--r-- | Lib/tkinter/__init__.py | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/Lib/idlelib/SearchEngine.py b/Lib/idlelib/SearchEngine.py index 1e0534c..37883bf 100644 --- a/Lib/idlelib/SearchEngine.py +++ b/Lib/idlelib/SearchEngine.py @@ -107,7 +107,7 @@ class SearchEngine: It directly return the result of that call. Text is a text widget. Prog is a precompiled pattern. - The ok parameteris a bit complicated as it has two effects. + The ok parameter is a bit complicated as it has two effects. If there is a selection, the search begin at either end, depending on the direction setting and ok, with ok meaning that diff --git a/Lib/idlelib/idle_test/mock_tk.py b/Lib/idlelib/idle_test/mock_tk.py index a8030f4..86fe848 100644 --- a/Lib/idlelib/idle_test/mock_tk.py +++ b/Lib/idlelib/idle_test/mock_tk.py @@ -1,6 +1,6 @@ """Classes that replace tkinter gui objects used by an object being tested. -A gui object is anything with a master or parent paramenter, which is +A gui object is anything with a master or parent parameter, which is typically required in spite of what the doc strings say. """ diff --git a/Lib/test/decimaltestdata/exp.decTest b/Lib/test/decimaltestdata/exp.decTest index 021b478..6a7af23 100644 --- a/Lib/test/decimaltestdata/exp.decTest +++ b/Lib/test/decimaltestdata/exp.decTest @@ -19,7 +19,7 @@ ------------------------------------------------------------------------
version: 2.59
--- Tests of the exponential funtion. Currently all testcases here
+-- Tests of the exponential function. Currently all testcases here
-- show results which are correctly rounded (within <= 0.5 ulp).
extended: 1
diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py index 7ac19bf..07d167d 100644 --- a/Lib/test/script_helper.py +++ b/Lib/test/script_helper.py @@ -34,7 +34,7 @@ def interpreter_requires_environment(): doesn't have an obvious home with Python's current home finding logic. Setting PYTHONHOME is one way to get most of the testsuite to run in that - situation. PYTHONPATH or PYTHONUSERSITE are other common envirnonment + situation. PYTHONPATH or PYTHONUSERSITE are other common environment variables that might impact whether or not the interpreter can start. """ global __cached_interp_requires_environment diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index 665272f..bbe5a13 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -2174,7 +2174,7 @@ def test_DocTestSuite(): ... AttributeError: module 'test.test_doctest' has no attribute 'sillySetup' - The setUp and tearDown funtions are passed test objects. Here + The setUp and tearDown functions are passed test objects. Here we'll use the setUp function to supply the missing variable y: >>> def setUp(test): @@ -2320,7 +2320,7 @@ def test_DocFileSuite(): ... AttributeError: module 'test.test_doctest' has no attribute 'sillySetup' - The setUp and tearDown funtions are passed test objects. + The setUp and tearDown functions are passed test objects. Here, we'll use a setUp function to set the favorite color in test_doctest.txt: diff --git a/Lib/test/test_email/__init__.py b/Lib/test/test_email/__init__.py index a59775c..d2f7d31 100644 --- a/Lib/test/test_email/__init__.py +++ b/Lib/test/test_email/__init__.py @@ -87,7 +87,7 @@ def parameterize(cls): element tuples. However derived, the resulting sequence is passed via *args to the parameterized test function. - In a _params dictioanry, the keys become part of the name of the generated + In a _params dictionary, the keys become part of the name of the generated tests. In a _params list, the values in the list are converted into a string by joining the string values of the elements of the tuple by '_' and converting any blanks into '_'s, and this become part of the name. diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 72eac0d..8f49407 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -709,7 +709,7 @@ class GeneralModuleTests(unittest.TestCase): raise socket.gaierror def testSendtoErrors(self): - # Testing that sendto doens't masks failures. See #10169. + # Testing that sendto doesn't masks failures. See #10169. s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.addCleanup(s.close) s.bind(('', 0)) diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 98f01ee..4b75ea6 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -629,7 +629,7 @@ class ThreadTests(BaseTestCase): def generator(): while 1: - yield "genereator" + yield "generator" def callback(): if callback.gen is None: diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index 109e399..c57ebd2 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -1736,7 +1736,7 @@ class Wm: On X, the images are arranged into the _NET_WM_ICON X property, which most modern window managers support. An icon specified by - wm_iconbitmap may exist simuultaneously. + wm_iconbitmap may exist simultaneously. On Macintosh, this currently does nothing.""" if default: |