summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-09-13 00:14:39 (GMT)
committerGitHub <noreply@github.com>2018-09-13 00:14:39 (GMT)
commitc9a71dd223c4ad200a97aa320aef6bd3d45f8897 (patch)
treee287118e87da5e55f7b6adc2ac3727f871aa520a /Misc
parent6d9767fb263d286dc383ece01ca5b0b25117bd94 (diff)
downloadcpython-c9a71dd223c4ad200a97aa320aef6bd3d45f8897.zip
cpython-c9a71dd223c4ad200a97aa320aef6bd3d45f8897.tar.gz
cpython-c9a71dd223c4ad200a97aa320aef6bd3d45f8897.tar.bz2
closes bpo-34641: Further restrict the LHS of keyword argument function call syntax. (GH-9212)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-09-11-23-12-33.bpo-34641.gFBCc9.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-09-11-23-12-33.bpo-34641.gFBCc9.rst b/Misc/NEWS.d/next/Core and Builtins/2018-09-11-23-12-33.bpo-34641.gFBCc9.rst
new file mode 100644
index 0000000..9b6eb24
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-09-11-23-12-33.bpo-34641.gFBCc9.rst
@@ -0,0 +1,2 @@
+Further restrict the syntax of the left-hand side of keyword arguments in
+function calls. In particular, ``f((keyword)=arg)`` is now disallowed.