summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-02-01 21:40:16 (GMT)
committerEmily Morehouse <emilyemorehouse@gmail.com>2019-02-01 21:40:16 (GMT)
commitd4fceaafb8e3f8700d9ec6ab37a51e903392f74f (patch)
treefb3681a954e8d42a3a3161ad38eebcb4eeaf9884 /Misc
parent85d83ec7c99727476c79feb5c34c65264a99144e (diff)
downloadcpython-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.rst2
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.