]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] 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:26 +0000 (11:01 +0200)
committerGitHub <noreply@github.com>
Sun, 19 Jul 2026 09:01:26 +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 af32a17b374fc133ebd99aa4b7dcba4dd276a318..39a7b41c755097e8e3cefde9fa1cabed24d375c9 100644 (file)
@@ -1960,7 +1960,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