https://github.com/python/cpython/commit/34afba47479f701c9567c3d3f5c437ae03b80b55 commit: 34afba47479f701c9567c3d3f5c437ae03b80b55 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-11T12:19:05+03:00 summary:
[3.14] Fix typo in `logging` docs (GH-137981) (#137983) Co-authored-by: Maximilian Linhoff <[email protected]> files: M Doc/library/logging.rst diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 72190e97240514..79d8673a7e764b 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1137,7 +1137,7 @@ Thread Safety ------------- The logging module is intended to be thread-safe without any special work -needing to be done by its clients. It achieves this though using threading +needing to be done by its clients. It achieves this through using threading locks; there is one lock to serialize access to the module's shared data, and each handler also creates a lock to serialize access to its underlying I/O. _______________________________________________ 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]
