Show More
@@ -149,6 +149,17 b' def make_arrow(pad):' | |||
|
149 | 149 | return '' |
|
150 | 150 | |
|
151 | 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 | ||
|
152 | 163 | RGX_EXTRA_INDENT = re.compile(r'(?<=\n)\s+') |
|
153 | 164 | |
|
154 | 165 |
General Comments 0
You need to be logged in to leave comments.
Login now