summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2023-06-22 15:56:40 (GMT)
committerGitHub <noreply@github.com>2023-06-22 15:56:40 (GMT)
commit13237a2da846efef9ce9b93fd4bcfebd49933568 (patch)
tree7b7f9d20356294040d41a082c6feadb58756d75b /Misc
parenta8006706f7d6e8825b90f1970beed7845d1d72ed (diff)
downloadcpython-13237a2da846efef9ce9b93fd4bcfebd49933568.zip
cpython-13237a2da846efef9ce9b93fd4bcfebd49933568.tar.gz
cpython-13237a2da846efef9ce9b93fd4bcfebd49933568.tar.bz2
gh-98931: Add custom error messages to invalid import/from with multiple targets (#105985)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-06-22-14-19-17.gh-issue-98931.PPgvSF.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-06-22-14-19-17.gh-issue-98931.PPgvSF.rst b/Misc/NEWS.d/next/Core and Builtins/2023-06-22-14-19-17.gh-issue-98931.PPgvSF.rst
new file mode 100644
index 0000000..611660d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-06-22-14-19-17.gh-issue-98931.PPgvSF.rst
@@ -0,0 +1,2 @@
+Ensure custom :exc:`SyntaxError` error messages are raised for invalid
+imports with multiple targets. Patch by Pablo Galindo