Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b57430 + 002c17a commit 8ff4109Copy full SHA for 8ff4109
1 file changed
IPython/core/debugger.py
@@ -149,6 +149,17 @@ def make_arrow(pad):
149
return ''
150
151
152
+def BdbQuit_excepthook(et, ev, tb, excepthook=None):
153
+ """Exception hook which handles `BdbQuit` exceptions.
154
+
155
+ All other exceptions are processed using the `excepthook`
156
+ parameter.
157
+ """
158
+ raise ValueError(
159
+ "`BdbQuit_excepthook` is deprecated since version 5.1. It is still arround only because it is still imported by ipdb.",
160
+ )
161
162
163
RGX_EXTRA_INDENT = re.compile(r'(?<=\n)\s+')
164
165
0 commit comments