]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix typo "interruptability" in Logging Cookbook documentation (GH-154027)...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 19 Jul 2026 09:01:48 +0000 (11:01 +0200)
committerGitHub <noreply@github.com>
Sun, 19 Jul 2026 09:01:48 +0000 (09:01 +0000)
(cherry picked from commit 30541f202f81ab3d3da5a6ac10c07fb6f1e4dcb4)

Co-authored-by: Michael Newman <michael.b.newman@gmail.com>
Doc/howto/logging-cookbook.rst

index 444fec031af9ab87c6d3027bf903c4d9444d5d18..e6ccb8038ca2d5a61a23b9ed2ae36b602eff5774 100644 (file)
@@ -1947,7 +1947,7 @@ Subclass ``QueueListener``
     class NNGSocketListener(logging.handlers.QueueListener):
 
         def __init__(self, uri, /, *handlers, **kwargs):
-            # Have a timeout for interruptability, and open a
+            # Have a timeout for interruptibility, and open a
             # subscriber socket
             socket = pynng.Sub0(listen=uri, recv_timeout=500)
             # The b'' subscription matches all topics