summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-01-07 17:30:55 (GMT)
committerVictor Stinner <vstinner@python.org>2020-01-07 17:30:54 (GMT)
commitb821173b5458d137c8d5edb6e9b4997aac800a38 (patch)
treecfce6072acf70326f63889be722ab402d4d36e95 /Misc
parent13a7ee8d62dafe7d2291708312fa2a86e171c7fa (diff)
downloadcpython-b821173b5458d137c8d5edb6e9b4997aac800a38.zip
cpython-b821173b5458d137c8d5edb6e9b4997aac800a38.tar.gz
cpython-b821173b5458d137c8d5edb6e9b4997aac800a38.tar.bz2
bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17780)
Correctly parenthesize filter-based statements that contain lambda expressions in lib2to3.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-01-01-18-44-52.bpo-38871.3EEOLg.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-01-01-18-44-52.bpo-38871.3EEOLg.rst b/Misc/NEWS.d/next/Library/2020-01-01-18-44-52.bpo-38871.3EEOLg.rst
new file mode 100644
index 0000000..fe970fd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-01-01-18-44-52.bpo-38871.3EEOLg.rst
@@ -0,0 +1,2 @@
+Correctly parenthesize filter-based statements that contain lambda
+expressions in mod:`lib2to3`. Patch by Dong-hee Na.