This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author iritkatriel
Recipients Timothy McCurrach, iritkatriel
Date 2020-11-04.18:46:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1604515568.16.0.279444034537.issue34463@roundup.psfhosted.org>
In-reply-to
Content
Reproduced on 3.10:

Running Release|Win32 interpreter...
Python 3.10.0a1+ (heads/exceptionGroup-stage1-dirty:928c211ad8, Oct 28 2020, 14:36:37) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> raise SyntaxError("some message")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SyntaxError: some message

>>> import traceback
>>> import sys
>>> sys.excepthook = traceback.print_exception
>>> raise SyntaxError("some message")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line None
SyntaxError: some message
History
Date User Action Args
2020-11-04 18:46:08iritkatrielsetrecipients: + iritkatriel, Timothy McCurrach
2020-11-04 18:46:08iritkatrielsetmessageid: <1604515568.16.0.279444034537.issue34463@roundup.psfhosted.org>
2020-11-04 18:46:08iritkatriellinkissue34463 messages
2020-11-04 18:46:08iritkatrielcreate