-
-
Notifications
You must be signed in to change notification settings - Fork 31.6k
Expand traceback module API to accept just an exception as an argument #70577
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
Comments
When reading https://docs.python.org/3/library/traceback.html#traceback.print_exception I noticed that everything takes a traceback or a set of exception type, instance, and traceback. But since Python 3.0 all of that information is contained in a single exception object. So there's no reason to expand the APIs in the traceback module that take an exception to just take an exception instance and infer the exception type and grab the exception from exception instance itself. |
You title and post don't seem to match. The title says to expand the API and the post says there is no reason to expand the API. Did you mean 'good reason'? Also, I think you meant 'grab the traceback' (from the exception) rather than 'grab the exception'. How would you get from here to there and change required etype, value, tb to just required value, without breaking old code? |
There is precedent with Python 2’s “raise” statement for accepting an exception instance for the first parameter (where an exception class would otherwise be passed). Also, generator.throw() supports this; see bpo-14911 for clarifying its documentation. I would support changing the following signatures so that the first parameter could hold the value, not just the type: print_exception(etype, value=None, tb=None, limit=None, ...)
format_exception_only(etype, value=None)
format_exception(etype, value=None, tb=None, limit=None, ...)
TracebackException(exc_type, exc_value=None, exc_traceback=None, *, ...) |
So Terry's right that in my haste to write down the idea I contradicted myself. I do want to tweak the APIs in the traceback module to accept only an exception. The question is whether we need entirely new functions or if the pre-existing ones can be updated to work with just an exception. And if we were to tweak the existing functions instead of add new ones, I would do it by making all arguments optional and adding a new keyword-only argument called |
Just came across that with wanting to use print_exception and got the same idea. It seem like in print_exception, and format_exception, etype is already ignored and I don't see any clean way to migrate to a new API (IMHO a forced A possibility, as Though that feels weird as well, and the Deprecation Cycles would need to be long. Already emitting deprecation warnings (that etype is ignored) would be good. |
I've attempted a Pull-request trying to implement what Brett is describing. See #327, and opened http://bugs.python.org/issue29660 to document that etype is ignored and decide wether it should emit DeprecationWarning when used. |
Matthias’s proposal adds support for a new keyword-only “exc” argument: print_exception(exc=exception_instance) I still think it is worth supporting a single positional argument as well: print_exception(exception_instance) Another point is that it may be better to keep the existing parameter name “value”, rather than (eventually?) replacing it with “exc”. I think both of these things could be accomplished by juggling the “value” and “etype” parameters: def print_exception(etype=None, value=None, tb=None, ...):
if value is None: # Assume value passed as first positional argument
value = etype
etype = None
if etype is tb is None: # Only value passed
etype = type(value)
tb = value.__traceback__
# Existing code using (etype, value, tb) The disadvantage of any of these changes is that we may want to maintain support for the old signature while Python 2 remains alive. |
I agreed, and that what I would have done outside of CPython, but that felt like this kind of juggling was frowned upon.
Your example does not seem to break the old signature. Or I fail to see how. If that way would be accepted I'm happy to implement it. |
I don't think supporting both approaches is worth it; we should just choose one of them. As for which one, I'm torn. The single argument one is the most pragmatic, but changing types like has always bugged me. But as Martin points out, the Basically I can't decide. :) |
The print_exception API goes back to when exception values were (or at least, could be) strings. Its doc is incomplete as to the requirements on the args and, at least by 3.5, erroneous. To modify it, we need to understand how it actually works now. In 2.7, 'etype' can apparently by anything with an __str__ method. (Someone could check the 2.7 code.) At least Exception, 'abc', and None result in 'Exception', 'abc' or 'None' leading the last line. Example:
>>> try: 1/0
except Exception as e:
tb.print_exception(None, e, None) None: integer division or modulo by zero By at least 3.5, the etype arg can definitely be anything, because it is ignored. The printed exception type is already grabbed from the exception. Any patch should not change this. Note that this 3.x change already introduced an incompatibility. In 3.5, the above prints 'ZeroDivisionError' instead of 'None'. This holdover line in the doc "prints the exception etype and value after the stack trace" is wrong and should be corrected with a 'changed in 3.x' note if done after 3.0. In 2.7, value can at least be an exception, a string, or None (not documented). (Ditto for checking the code.) >>> try: 1/0
except Exception as e:
tb.print_exception(None, 'zero-divive', tb=None)
None: zero-divive
>>> try: 1/0
except Exception as e:
tb.print_exception(None, None, None) None In 3.?, value must be an exception instance (or compatible duck) (not documented). So, more potential incompatibilities with 2.x. In 2.7, tb is needed to supply the traceback, or to suppress it. As a separate parameter, it allows a traceback to be modified before printing.* The option of a modified or omitted traceback (the ultimate modification) should be kept. *IDLE edits tracebacks before printing to delete artifacts introduced by IDLE internals. The attempt is to print what the console interpreter would. I don't currently know whether it replaces the original on the exception or not. There is also a proposal for the standard interpreter to edit tracebacks after recursion limit exceptions. So traceback editing is useful, and I see no need to force replacement of the semi-private e.__traceback__. My suggestions: tb: In 3.7, in the API, change 'tb' to 'tb=True'. If tb is left True, grab it from the exception. If tb is explicitly supplied, use it. If tb is set to False or (for back compatibility) None, suppress it. value: In 3.5+ document that it must be an exception. etype: In 3.5+ document that it is an ignored dummy argument and that one can just pass 0, '', or None.
I am inclined to go with both options, but even if the 3 of us agree, I might be inclined to post our intention on pydev. |
Comments probably apply to format_exception and in part, format_exception_only (both also patched in PR237) but I have not checked behavior or code at all. |
Do you mean after 2.7 EOL, or after 3.7 ?
That seem hard to do if we want to allow func(exception), should we attempt to emit a deprecation warning only when etype is used in the Legacy Form ?
Same question as above, unsure what you mean.
That seem like overly complicated as now the actual exception object can be either in etype, value, or exc. Let my try to give example to see if I understood correctly 2.7 compat print_exception(etype, value, tb)
print_exception(etype=etype, value=value, tb=tb) 3.5 compat 3.7
Signature would thus be: if first param isinstance BaseException: # 3.7+, prefered form
print_exception(exc, [tb ,] *, [limit, file, chain])
else:
print_exception(etype, value, tb, [limit, file, chain])
# etype being ignored Should exc be positional only ? print_exception(exc, /, [tb ,] *, [limit, file, chain]) Should print_exception(exc, [tb , limit, file, chain]) |
Matthias, I will try to respond tomorrow. |
The last comment on the original PR for this issue was to wait until an API was decided upon before proceeding with creating a new PR. Bumping this issue to generate new discussion and hopefully reach concession on an API. |
Boy, having a postional-only parameter in that first position would have been handy when we created this API (as Matthias pointed out). :) The 'exec' keyword-only parameter is obviously the safest option here. Making the first parameter positional-only and then making the other parameters optional would lead to the most fluid API long-term as people I suspect would much rather just pass in an object than always specifying the keyword-only parameter every time going forward. I also doubt anyone is specifying etype by name. So my vote is: +1 to a positional-only first parameter |
@mbussonn, were you interested in continuing with Brett's (and your) suggestion for the API by making the first argument positional-only and the others optional? |
Yes, but I currently do not have the time; if someone else want to take over; or if you need to close this issue or corresponding PR for now please feel free to do so. I'll come back to it at some point. |
It would be nice to see this one come to fruition. |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: