summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-02-20 10:24:00 (GMT)
committerGitHub <noreply@github.com>2022-02-20 10:24:00 (GMT)
commit4ab8167b9c60d1a04b2e3116d0c52db254b68cda (patch)
treef7c1e79ff0941bfd8deca5e6dfccc0d527f87d8d /Misc/NEWS.d
parente7130c2e8c6abfaf04b209bd5b239059eda024b9 (diff)
downloadcpython-4ab8167b9c60d1a04b2e3116d0c52db254b68cda.zip
cpython-4ab8167b9c60d1a04b2e3116d0c52db254b68cda.tar.gz
cpython-4ab8167b9c60d1a04b2e3116d0c52db254b68cda.tar.bz2
bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2022-02-07-13-15-16.bpo-46672.4swIjx.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-02-07-13-15-16.bpo-46672.4swIjx.rst b/Misc/NEWS.d/next/Library/2022-02-07-13-15-16.bpo-46672.4swIjx.rst
new file mode 100644
index 0000000..9a76c29
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-02-07-13-15-16.bpo-46672.4swIjx.rst
@@ -0,0 +1 @@
+Fix ``NameError`` in :func:`asyncio.gather` when initial type check fails.