https://github.com/python/cpython/commit/b5e2a7f08f03659a1f8cd8e54c18c8ca3008e621 commit: b5e2a7f08f03659a1f8cd8e54c18c8ca3008e621 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-07-19T09:01:26Z summary:
[3.14] Fix typo "interruptability" in Logging Cookbook documentation (GH-154027) (#154067) (cherry picked from commit 30541f202f81ab3d3da5a6ac10c07fb6f1e4dcb4) Co-authored-by: Michael Newman <[email protected]> files: M Doc/howto/logging-cookbook.rst diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index af32a17b374fc13..39a7b41c755097e 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
