summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2020-01-09 10:01:35 -0800
committerGuido van Rossum <guido@python.org>2020-01-09 10:01:35 -0800
commit7c7861bfafbc1f2fd6af26e95480ac3c80212c14 (patch)
tree74a9998ed3d7e959faba13b04d951b7b53e37e91
parent47298c89e83d7563b668598b1ceeee4f9e4ec648 (diff)
downloadcpython-git-bpo-39235-genexp-endloc.tar.gz
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-01-09-10-01-18.bpo-39235.RYwjoc.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-09-10-01-18.bpo-39235.RYwjoc.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-09-10-01-18.bpo-39235.RYwjoc.rst
new file mode 100644
index 0000000000..5fb0d45356
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-09-10-01-18.bpo-39235.RYwjoc.rst
@@ -0,0 +1,2 @@
+Fix AST end location for lone generator expression in function call, e.g.
+f(i for i in a).