diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-01-10 09:24:22 (GMT) |
---|---|---|
committer | Mark Shannon <mark@hotpy.org> | 2020-01-10 09:24:22 (GMT) |
commit | 4c53e63cc966f98e141a09bc435b9f9c713b152d (patch) | |
tree | 27435c8386cf6a99db3de9300b15a6ac6f70640d /Misc/NEWS.d | |
parent | 850a8856e120f8cba15e557a0e791f93b43d6989 (diff) | |
download | cpython-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.rst | 2 |
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. |