From d46c3e8952e7867ec3977f1166e668a4e187ae57 Mon Sep 17 00:00:00 2001 From: Michael <65680649+michaelg100@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:02:19 -0400 Subject: [PATCH 1/4] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 7dd3660b1987845..4343f5fdc49cbed 100644 --- a/README.rst +++ b/README.rst @@ -64,7 +64,7 @@ the executable is called ``python.exe``; elsewhere it's just ``python``. Building a complete Python installation requires the use of various additional third-party libraries, depending on your build platform and configure options. Not all standard library modules are buildable or -useable on all platforms. Refer to the +usable on all platforms. Refer to the `Install dependencies `_ section of the `Developer Guide`_ for current detailed information on dependencies for various Linux distributions and macOS. From 198056eb08589c048f1ad78f0130e853084baf21 Mon Sep 17 00:00:00 2001 From: Michael <65680649+michaelg100@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:04:14 -0400 Subject: [PATCH 2/4] Update test_itertools.py --- Lib/test/test_itertools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 5fd6ecf37427f7d..052dcace4efdc75 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1278,7 +1278,7 @@ def test_tee(self): t3 = tnew(t1) self.assertTrue(list(t1) == list(t2) == list(t3) == list('abc')) - # test that tee objects are weak referencable + # test that tee objects are weak referenceable a, b = tee(range(10)) p = weakref.proxy(a) self.assertEqual(getattr(p, '__class__'), type(b)) From d7819344b908f973cd352dce0abd316f857cf6b5 Mon Sep 17 00:00:00 2001 From: Michael <65680649+michaelg100@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:09:20 -0400 Subject: [PATCH 3/4] Update test_shutil.py --- Lib/test/test_shutil.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 02ef172613bf943..c458c5df32572b4 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -905,10 +905,10 @@ def test_copytree_arg_types_of_ignore(self): os.mkdir(os.path.join(src_dir, 'test_dir', 'subdir')) write_file((src_dir, 'test_dir', 'subdir', 'test.txt'), '456') - invokations = [] + invocations = [] def _ignore(src, names): - invokations.append(src) + invocations.append(src) self.assertIsInstance(src, str) self.assertIsInstance(names, list) self.assertEqual(len(names), len(set(names))) @@ -933,7 +933,7 @@ def _ignore(src, names): self.assertTrue(exists(join(dst_dir, 'test_dir', 'subdir', 'test.txt'))) - self.assertEqual(len(invokations), 9) + self.assertEqual(len(invocations), 9) def test_copytree_retains_permissions(self): tmp_dir = self.mkdtemp() From aabf7688022640776fecaf83a9179186f4c28cb0 Mon Sep 17 00:00:00 2001 From: Michael <65680649+michaelg100@users.noreply.github.com> Date: Wed, 10 Jul 2024 18:05:02 -0400 Subject: [PATCH 4/4] Update README.rst Co-authored-by: Peter Bierma --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4343f5fdc49cbed..7dd3660b1987845 100644 --- a/README.rst +++ b/README.rst @@ -64,7 +64,7 @@ the executable is called ``python.exe``; elsewhere it's just ``python``. Building a complete Python installation requires the use of various additional third-party libraries, depending on your build platform and configure options. Not all standard library modules are buildable or -usable on all platforms. Refer to the +useable on all platforms. Refer to the `Install dependencies `_ section of the `Developer Guide`_ for current detailed information on dependencies for various Linux distributions and macOS.