diff options
author | Xtreak <tir.karthi@gmail.com> | 2019-02-01 21:40:16 (GMT) |
---|---|---|
committer | Emily Morehouse <emilyemorehouse@gmail.com> | 2019-02-01 21:40:16 (GMT) |
commit | d4fceaafb8e3f8700d9ec6ab37a51e903392f74f (patch) | |
tree | fb3681a954e8d42a3a3161ad38eebcb4eeaf9884 /Misc | |
parent | 85d83ec7c99727476c79feb5c34c65264a99144e (diff) | |
download | cpython-d4fceaafb8e3f8700d9ec6ab37a51e903392f74f.zip cpython-d4fceaafb8e3f8700d9ec6ab37a51e903392f74f.tar.gz cpython-d4fceaafb8e3f8700d9ec6ab37a51e903392f74f.tar.bz2 |
bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724)
* Add parenthesis optional in named expressions for while statement
* Add NEWS entry
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-02-01-22-38-11.bpo-35877.Jrse8f.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-01-22-38-11.bpo-35877.Jrse8f.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-01-22-38-11.bpo-35877.Jrse8f.rst new file mode 100644 index 0000000..1fb173f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-02-01-22-38-11.bpo-35877.Jrse8f.rst @@ -0,0 +1,2 @@ +Make parenthesis optional for named expressions in while statement. Patch by +Karthikeyan Singaravelan. |