diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-18 20:32:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 20:32:01 (GMT) |
commit | 846a10fc45ef83b41d1b1b568a9ee8012f37c8c2 (patch) | |
tree | be89748501548ee29a1db86ae0e835ee185bb29f /Misc | |
parent | d1c0e4413dd544270df1f5b8a145fd4370cb759b (diff) | |
download | cpython-846a10fc45ef83b41d1b1b568a9ee8012f37c8c2.zip cpython-846a10fc45ef83b41d1b1b568a9ee8012f37c8c2.tar.gz cpython-846a10fc45ef83b41d1b1b568a9ee8012f37c8c2.tar.bz2 |
bpo-44947: Refine the syntax error for trailing commas in import statements (GH-27814)
(cherry picked from commit b2f68b190035540872072ac1d2349e7745e85596)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-18-19-09-28.bpo-44947.mcvGdS.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-18-19-09-28.bpo-44947.mcvGdS.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-18-19-09-28.bpo-44947.mcvGdS.rst new file mode 100644 index 0000000..d531ba9 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-18-19-09-28.bpo-44947.mcvGdS.rst @@ -0,0 +1,2 @@ +Refine the syntax error for trailing commas in import statements. Patch by +Pablo Galindo. |