diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2022-06-21 19:10:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 19:10:45 (GMT) |
commit | 830513754d081619b2d72db17770627312072fa5 (patch) | |
tree | 6cedb4923e174bf2611faa1b5e74a8016f12bbb6 | |
parent | f62ff97f31a775cc7956adeae32c14e7c85bdc15 (diff) | |
download | cpython-830513754d081619b2d72db17770627312072fa5.zip cpython-830513754d081619b2d72db17770627312072fa5.tar.gz cpython-830513754d081619b2d72db17770627312072fa5.tar.bz2 |
gh-93675: Fix typos in `Doc/` (GH-93676)
Closes #93675
-rw-r--r-- | Doc/library/concurrent.futures.rst | 2 | ||||
-rw-r--r-- | Doc/library/contextlib.rst | 2 | ||||
-rw-r--r-- | Doc/library/signal.rst | 2 | ||||
-rw-r--r-- | Doc/library/socket.rst | 2 | ||||
-rw-r--r-- | Doc/reference/expressions.rst | 2 | ||||
-rw-r--r-- | Doc/tools/rstlint.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 99703ff..8efbf0a 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -257,7 +257,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock. replaced with a fresh worker process. By default *max_tasks_per_child* is ``None`` which means worker processes will live as long as the pool. When a max is specified, the "spawn" multiprocessing start method will be used by - default in absense of a *mp_context* parameter. This feature is incompatible + default in absence of a *mp_context* parameter. This feature is incompatible with the "fork" start method. .. versionchanged:: 3.3 diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index 84c4ca0..2d28fb3 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -361,7 +361,7 @@ Functions and classes provided: As this changes a global state, the working directory, it is not suitable for use in most threaded or async contexts. It is also not suitable for most non-linear code execution, like generators, where the program execution is - temporarily relinquished -- unless explicitely desired, you should not yield + temporarily relinquished -- unless explicitly desired, you should not yield when this context manager is active. This is a simple wrapper around :func:`~os.chdir`, it changes the current diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 36bb4a9..d850639 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -739,7 +739,7 @@ To illustrate this issue, consider the following code:: def __enter__(self): # If KeyboardInterrupt occurs here, everything is fine self.lock.acquire() - # If KeyboardInterrupt occcurs here, __exit__ will not be called + # If KeyboardInterrupt occurs here, __exit__ will not be called ... # KeyboardInterrupt could occur just before the function returns diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 49ea62f..fc8a56e 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -242,7 +242,7 @@ created. Socket addresses are represented as follows: child partitions. - ``HV_GUID_LOOPBACK`` - Used as a target to itself. - ``HV_GUID_PARENT`` - When used as a bind accepts connection from the parent - partition. When used as an address target it will connect to the parent parition. + partition. When used as an address target it will connect to the parent partition. The ``service_id`` is the service identifier of the registered service. diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 1f461e3..6bf21a7 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -573,7 +573,7 @@ is already executing raises a :exc:`ValueError` exception. In typical use, this is called with a single exception instance similar to the way the :keyword:`raise` keyword is used. - For backwards compatability, however, the second signature is + For backwards compatibility, however, the second signature is supported, following a convention from older versions of Python. The *type* argument should be an exception class, and *value* should be an exception instance. If the *value* is not provided, the diff --git a/Doc/tools/rstlint.py b/Doc/tools/rstlint.py index d1c53dc..4ea68ef 100644 --- a/Doc/tools/rstlint.py +++ b/Doc/tools/rstlint.py @@ -130,7 +130,7 @@ role_with_no_backticks = re.compile(r"%s[^` ]" % all_roles) # Find role glued with another word like: # the:c:func:`PyThreadState_LeaveTracing` function. -# instad of: +# instead of: # the :c:func:`PyThreadState_LeaveTracing` function. role_glued_with_word = re.compile(r"[a-zA-Z]%s" % all_roles) |