diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2021-01-03 01:14:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 01:14:21 +0200 |
commit | 2ea320dddd553298038bb7d6789e50e199332f66 (patch) | |
tree | e0388038b94c848cc18922f86ff0cb82e4c44465 /Misc | |
parent | No need to test "istep==1" twice. (GH-24064) (diff) | |
download | cpython-2ea320dddd553298038bb7d6789e50e199332f66.tar.gz cpython-2ea320dddd553298038bb7d6789e50e199332f66.tar.bz2 cpython-2ea320dddd553298038bb7d6789e50e199332f66.zip |
bpo-40631: Disallow single parenthesized star target (GH-24027)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-12-31-20-58-22.bpo-40631.deRMCx.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-12-31-20-58-22.bpo-40631.deRMCx.rst b/Misc/NEWS.d/next/Core and Builtins/2020-12-31-20-58-22.bpo-40631.deRMCx.rst new file mode 100644 index 00000000000..ac2db293823 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-12-31-20-58-22.bpo-40631.deRMCx.rst @@ -0,0 +1,2 @@ +Fix regression where a single parenthesized starred expression was a valid +assignment target. |