diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-01-07 09:52:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 09:52:06 -0800 |
commit | 39a5c889d30d03a88102e56f03ee0c95db198fb3 (patch) | |
tree | 85b353ab75c589d883c5224eb7222619a283dd22 /Misc/NEWS.d | |
parent | bff48c6734f936257b0cfae58dbea67d43e3b245 (diff) | |
download | cpython-git-39a5c889d30d03a88102e56f03ee0c95db198fb3.tar.gz |
bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17780)
Correctly parenthesize filter-based statements that contain lambda
expressions in lib2to3.
(cherry picked from commit b821173b5458d137c8d5edb6e9b4997aac800a38)
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-01-01-18-44-52.bpo-38871.3EEOLg.rst | 2 |
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 0000000000..fe970fd9e3 --- /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. |