diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2021-12-19 11:22:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 11:22:40 (GMT) |
commit | da4b214304df38cf1831071804a2b83938f95923 (patch) | |
tree | 9823fdba80b7228c6069824c89a3113d215fd6c3 /Misc/NEWS.d | |
parent | 9b52920173735ac609664c6a3a3021d24a95a092 (diff) | |
download | cpython-da4b214304df38cf1831071804a2b83938f95923.zip cpython-da4b214304df38cf1831071804a2b83938f95923.tar.gz cpython-da4b214304df38cf1831071804a2b83938f95923.tar.bz2 |
bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutError` with builtin `TimeoutError` (GH-30197)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-11-26-10-23-46.bpo-42413.HFikOl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-11-26-10-23-46.bpo-42413.HFikOl.rst b/Misc/NEWS.d/next/Library/2020-11-26-10-23-46.bpo-42413.HFikOl.rst new file mode 100644 index 0000000..85b7fe2 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-11-26-10-23-46.bpo-42413.HFikOl.rst @@ -0,0 +1,2 @@ +Replace ``concurrent.futures.TimeoutError`` and ``asyncio.TimeoutError`` +with builtin :exc:`TimeoutError`, keep these names as deprecated aliases. |