diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ctypes/macholib/README.ctypes | 2 | ||||
-rw-r--r-- | Lib/idlelib/idle_test/README.txt | 3 | ||||
-rw-r--r-- | Lib/test/test_dict.py | 2 | ||||
-rw-r--r-- | Lib/test/test_socket.py | 2 | ||||
-rw-r--r-- | Lib/tkinter/tix.py | 4 |
5 files changed, 6 insertions, 7 deletions
diff --git a/Lib/ctypes/macholib/README.ctypes b/Lib/ctypes/macholib/README.ctypes index 4e10cbe411..2866e9f349 100644 --- a/Lib/ctypes/macholib/README.ctypes +++ b/Lib/ctypes/macholib/README.ctypes @@ -1,4 +1,4 @@ -Files in this directory from from Bob Ippolito's py2app. +Files in this directory come from Bob Ippolito's py2app. License: Any components of the py2app suite may be distributed under the MIT or PSF open source licenses. diff --git a/Lib/idlelib/idle_test/README.txt b/Lib/idlelib/idle_test/README.txt index a823b85f2c..f74affc712 100644 --- a/Lib/idlelib/idle_test/README.txt +++ b/Lib/idlelib/idle_test/README.txt @@ -17,8 +17,7 @@ python -m idlelib.idle_test.htest The idle directory, idlelib, has over 60 xyz.py files. The idle_test subdirectory should contain a test_xyz.py for each, where 'xyz' is lowercased even if xyz.py is not. Here is a possible template, with the -blanks after after '.' and 'as', and before and after '_' to be filled -in. +blanks after '.' and 'as', and before and after '_' to be filled in. import unittest from test.support import requires diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 075cb5a020..6d68e761c6 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -861,7 +861,7 @@ class DictTest(unittest.TestCase): itorg = iter(data.items()) d = pickle.dumps(itorg, proto) it = pickle.loads(d) - # note that the type of type of the unpickled iterator + # note that the type of the unpickled iterator # is not necessarily the same as the original. It is # merely an object supporting the iterator protocol, yielding # the same objects as the original one. diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 394c78c26c..4d0b17112f 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -4747,7 +4747,7 @@ class TIPCThreadableTest(unittest.TestCase, ThreadableTest): self.addCleanup(self.conn.close) def clientSetUp(self): - # The is a hittable race between serverExplicitReady() and the + # There is a hittable race between serverExplicitReady() and the # accept() call; sleep a little while to avoid it, otherwise # we could get an exception time.sleep(0.1) diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py index 9269e6a0f9..f667933a1e 100644 --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -1052,8 +1052,8 @@ class InputOnly(TixWidget): class LabelEntry(TixWidget): """LabelEntry - Entry field with label. Packages an entry widget - and a label into one mega widget. It can be used be used to simplify - the creation of ``entry-form'' type of interface. + and a label into one mega widget. It can be used to simplify the creation + of ``entry-form'' type of interface. Subwidgets Class ---------- ----- |