From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 19 Jul 2026 09:01:57 +0000 (+0200) Subject: [3.15] Fix typo "interruptability" in Logging Cookbook documentation (GH-154027)... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ba9c56aab8fa6ba9dcd3a13a8bec0def85cd0b9;p=thirdparty%2FPython%2Fcpython.git [3.15] Fix typo "interruptability" in Logging Cookbook documentation (GH-154027) (#154066) (cherry picked from commit 30541f202f81ab3d3da5a6ac10c07fb6f1e4dcb4) Co-authored-by: Michael Newman --- diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 87025814aafb..2ff221cf258e 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1955,7 +1955,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