diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-02-16 06:12:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-16 06:12:19 (GMT) |
commit | 62e4481238b82f111ffb1104a4b97099dd83ae2b (patch) | |
tree | f679c8f683e8e01118273163c2cec077a4530777 /Misc | |
parent | a16ab00c0b8e126ab82e7cb5098af3ea32d315ff (diff) | |
download | cpython-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.rst | 2 |
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. |