summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-01-10 09:24:22 (GMT)
committerMark Shannon <mark@hotpy.org>2020-01-10 09:24:22 (GMT)
commit4c53e63cc966f98e141a09bc435b9f9c713b152d (patch)
tree27435c8386cf6a99db3de9300b15a6ac6f70640d /Misc/NEWS.d
parent850a8856e120f8cba15e557a0e791f93b43d6989 (diff)
downloadcpython-4c53e63cc966f98e141a09bc435b9f9c713b152d.zip
cpython-4c53e63cc966f98e141a09bc435b9f9c713b152d.tar.gz
cpython-4c53e63cc966f98e141a09bc435b9f9c713b152d.tar.bz2
bpo-39166: Fix trace of last iteration of async for loops (#17800)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-01-02-22-22-03.bpo-39166.Qt-UeD.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-02-22-22-03.bpo-39166.Qt-UeD.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-02-22-22-03.bpo-39166.Qt-UeD.rst
new file mode 100644
index 0000000..4737e9c
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-02-22-22-03.bpo-39166.Qt-UeD.rst
@@ -0,0 +1,2 @@
+Fix incorrect line execution reporting in trace functions when tracing the
+last iteration of asynchronous for loops. Patch by Pablo Galindo.