From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 24 Apr 2023 14:22:24 +0000 (-0700) Subject: [3.11] Change 'dependant' to 'dependent' (GH-103745) (#103754) X-Git-Tag: v3.11.4~177 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34df9e740d1ec039dedae269740b28349993d685;p=thirdparty%2FPython%2Fcpython.git [3.11] Change 'dependant' to 'dependent' (GH-103745) (#103754) Co-authored-by: Christopher Chavez --- diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 50c220d77559..1591982da52f 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -457,7 +457,7 @@ user's system, including environment variables, system registry settings, and installed packages. The standard library is included as pre-compiled and optimized ``.pyc`` files in a ZIP, and ``python3.dll``, ``python37.dll``, ``python.exe`` and ``pythonw.exe`` are all provided. Tcl/tk (including all -dependants, such as Idle), pip and the Python documentation are not included. +dependents, such as Idle), pip and the Python documentation are not included. .. note:: diff --git a/Lib/idlelib/idle_test/test_sidebar.py b/Lib/idlelib/idle_test/test_sidebar.py index 049531e66a41..5506fd2b0e22 100644 --- a/Lib/idlelib/idle_test/test_sidebar.py +++ b/Lib/idlelib/idle_test/test_sidebar.py @@ -328,7 +328,7 @@ class LineNumbersTest(unittest.TestCase): self.assertEqual(self.linenumber.sidebar_text.index('@0,0'), '11.0') # Generate a mouse-wheel event and make sure it scrolled up or down. - # The meaning of the "delta" is OS-dependant, so this just checks for + # The meaning of the "delta" is OS-dependent, so this just checks for # any change. self.linenumber.sidebar_text.event_generate('', x=0, y=0, @@ -691,7 +691,7 @@ class ShellSidebarTest(unittest.TestCase): self.assertIsNotNone(text.dlineinfo(text.index(f'{last_lineno}.0'))) # Scroll up using the event. - # The meaning delta is platform-dependant. + # The meaning of delta is platform-dependent. delta = -1 if sys.platform == 'darwin' else 120 sidebar.canvas.event_generate('', x=0, y=0, delta=delta) yield