diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2022-03-30 12:15:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-30 12:15:06 (GMT) |
commit | f08a191882f75bb79d42a49039892105b2212fb9 (patch) | |
tree | e30c76a39b816edba83ade96c867de64277b1f05 /Misc/NEWS.d/next/Library | |
parent | 04acfa94bb383cce973739478a7b58ab20ab47f4 (diff) | |
download | cpython-f08a191882f75bb79d42a49039892105b2212fb9.zip cpython-f08a191882f75bb79d42a49039892105b2212fb9.tar.gz cpython-f08a191882f75bb79d42a49039892105b2212fb9.tar.bz2 |
bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-03-25-01-27-25.bpo-39622.ieBIMp.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-25-01-27-25.bpo-39622.ieBIMp.rst b/Misc/NEWS.d/next/Library/2022-03-25-01-27-25.bpo-39622.ieBIMp.rst new file mode 100644 index 0000000..25c6aa3 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-25-01-27-25.bpo-39622.ieBIMp.rst @@ -0,0 +1 @@ +Handle Ctrl+C in asyncio programs to interrupt the main task. |