Issue #24710: Use cls in TracebackException.from_exception.

Minor cleanup patch from Berker Peksag.
This commit is contained in:
Robert Collins 2015-07-26 06:50:51 +12:00 committed by Berker Peksag
parent 2218e9cf14
commit 9a27457e31
1 changed files with 2 additions and 3 deletions

View File

@ -489,13 +489,12 @@ class TracebackException:
self._load_lines()
@classmethod
def from_exception(self, exc, *args, **kwargs):
def from_exception(cls, exc, *args, **kwargs):
"""Create a TracebackException from an exception.
Only useful in Python 3 specific code.
"""
return TracebackException(
type(exc), exc, exc.__traceback__, *args, **kwargs)
return cls(type(exc), exc, exc.__traceback__, *args, **kwargs)
def _load_lines(self):
"""Private API. force all lines in the stack to be loaded."""