diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-12 04:51:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 04:51:13 (GMT) |
commit | 316590116a33978f029666c461970f51f6c36344 (patch) | |
tree | 38546562bce0f85a580de51b09c3f8cbaf8971c7 /Doc/howto | |
parent | 59ddbc4ab6fbdc646d0f23c2f3a80fd2e71df0d8 (diff) | |
download | cpython-316590116a33978f029666c461970f51f6c36344.zip cpython-316590116a33978f029666c461970f51f6c36344.tar.gz cpython-316590116a33978f029666c461970f51f6c36344.tar.bz2 |
gh-65046: Link to logging cookbook from asyncio docs (GH-98207)
(cherry picked from commit c39a0c335486fa8eac0f3030930f9e8769118a4f)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index ff7ba07..d43ffb2 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -332,6 +332,8 @@ configuration:: print('complete') +.. _blocking-handlers: + Dealing with handlers that block -------------------------------- |