-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macroexpand can crash the repl #1413
Comments
Looks like a duplicate of #818. |
Related, yes. Perhaps fixing that would fix this too, but the repl isn't even mentioned in that issue. |
Any exception raised while printing an exception will crash the REPL, because the REPL tries to show the user the exception. |
The REPL should catch exceptions raised while printing things, even other exceptions. See how Python handles a similar problem? >>> class BadException(Exception):
def __str__(self):
1 / 0
>>> raise BadException
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
raise BadException
BadException: <unprintable BadException object> Each of the "read" "eval" and "print" steps must catch exceptions and print an appropriate error. The repl should never terminate due to an exception. |
@gilch Would you object if I did that? |
Possibly related to #1412
The text was updated successfully, but these errors were encountered: