You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//| these lines are concatenated and printed, exactly the same text is
129
143
//| printed as does print_exception().
130
144
//|
131
-
//| .. note:: Setting ``chain`` will have no effect as chained exceptions are not yet implemented.
132
-
//|
133
145
//| :param exc: The exception. Must be an instance of `BaseException`. Unused if value is specified.
134
146
//| :param value: If specified, is used in place of ``exc``.
135
147
//| :param TracebackType tb: When value is alsp specified, ``tb`` is used in place of the exception's own traceback. If `None`, the traceback will not be printed.
136
148
//| :param int limit: Print up to limit stack trace entries (starting from the caller’s frame) if limit is positive.
137
149
//| Otherwise, print the last ``abs(limit)`` entries. If limit is omitted or None, all entries are printed.
138
-
//| :param bool chain: If `True` then chained exceptions will be printed (note: not yet implemented).
150
+
//| :param bool chain: If `True` then chained exceptions will be printed.
0 commit comments