summaryrefslogtreecommitdiff
path: root/Lib/traceback.py
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-07-26 06:50:51 +1200
committerRobert Collins <rbtcollins@hp.com>2015-07-26 06:50:51 +1200
commitaece8248b6257cd8c0840963a794537b9e1d9d14 (patch)
tree86201e57c9f02874681a3e8347cfb0e78481a0f1 /Lib/traceback.py
parentc94a1dc4c9a5d23fdb21f6928dd737a59ef3dfb2 (diff)
downloadcpython-git-aece8248b6257cd8c0840963a794537b9e1d9d14.tar.gz
Issue #24710: Use cls in TracebackException.from_exception.
Minor cleanup patch from Berker Peksag.
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r--Lib/traceback.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py
index 02edeb6217..3d2e5e0685 100644
--- a/Lib/traceback.py
+++ b/Lib/traceback.py
@@ -477,10 +477,9 @@ 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."""
- 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."""