summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-02-16 06:12:19 (GMT)
committerGitHub <noreply@github.com>2019-02-16 06:12:19 (GMT)
commit62e4481238b82f111ffb1104a4b97099dd83ae2b (patch)
treef679c8f683e8e01118273163c2cec077a4530777 /Misc
parenta16ab00c0b8e126ab82e7cb5098af3ea32d315ff (diff)
downloadcpython-62e4481238b82f111ffb1104a4b97099dd83ae2b.zip
cpython-62e4481238b82f111ffb1104a4b97099dd83ae2b.tar.gz
cpython-62e4481238b82f111ffb1104a4b97099dd83ae2b.tar.bz2
bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-02-04-21-10-17.bpo-15248.2sXSZZ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-04-21-10-17.bpo-15248.2sXSZZ.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-04-21-10-17.bpo-15248.2sXSZZ.rst
new file mode 100644
index 0000000..e938aaa
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-02-04-21-10-17.bpo-15248.2sXSZZ.rst
@@ -0,0 +1,2 @@
+The compiler emits now syntax warnings in the case when a comma is likely
+missed before tuple or list.