Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
Commit14a3b06
Allow Pdb to move between chained exception.
This lets Pdb receive an exception, instead of a traceback, and whenthis is the case and the exception are chained, the new `exceptions` commandallows to both list (no arguments) and move between the chained exceptions.That is to say if you have something like def out(): try: middle() # B except Exception as e: raise ValueError("foo(): bar failed") # A def middle(): try: return inner(0) # D except Exception as e: raise ValueError("Middle fail") from e # C def inner(x): 1 / x # EOnly A was reachable after calling `out()` and doing post mortem debug.With this all A-E points are reachable with a combination of up/down,and ``exceptions <number>``.This also change the default behavior of ``pdb.pm()``, as well as`python -m pdb <script.py>` to receive `sys.last_exc` so that chainedexception navigation is enabled.We do follow the logic of the ``traceback`` module and handle the``_context__`` and ``__cause__`` in the same way. That is to say, we try``__cause__`` first, and if not present chain with ``__context__``. Inthe same vein, if we encounter an exception that has``__suppress_context__`` (like when ``raise ... from None``), we do stopwalking the chain.Some implementation notes: - We do handle cycle in exceptions - cleanup of references to tracebacks are not cleared in ``forget()``, as ``setup()`` and ``forget()`` are both for setting a single exception. - We do not handle sub-exceptions of exception groups. - We ensure we do not hold references to exceptions too long with a new context manager. - Have the MAX_CHAINED_EXCEPTION_DEPTH class variable to control the maximum number we allowCo-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>1 parent47d7eba commit14a3b06
File tree
5 files changed
+527
-20
lines changed- Doc
- library
- whatsnew
- Lib
- test
- Misc/NEWS.d/next/Library
5 files changed
+527
-20
lines changedLines changed: 51 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
175 | 175 |
| |
176 | 176 |
| |
177 | 177 |
| |
178 |
| - | |
179 |
| - | |
| 178 | + | |
| 179 | + | |
180 | 180 |
| |
181 | 181 |
| |
182 | 182 |
| |
| |||
639 | 639 |
| |
640 | 640 |
| |
641 | 641 |
| |
| 642 | + | |
| 643 | + | |
| 644 | + | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | + | |
| 649 | + | |
| 650 | + | |
| 651 | + | |
| 652 | + | |
| 653 | + | |
| 654 | + | |
| 655 | + | |
| 656 | + | |
| 657 | + | |
| 658 | + | |
| 659 | + | |
| 660 | + | |
| 661 | + | |
| 662 | + | |
| 663 | + | |
| 664 | + | |
| 665 | + | |
| 666 | + | |
| 667 | + | |
| 668 | + | |
| 669 | + | |
| 670 | + | |
| 671 | + | |
| 672 | + | |
| 673 | + | |
| 674 | + | |
| 675 | + | |
| 676 | + | |
| 677 | + | |
| 678 | + | |
| 679 | + | |
| 680 | + | |
| 681 | + | |
| 682 | + | |
| 683 | + | |
| 684 | + | |
| 685 | + | |
| 686 | + | |
| 687 | + | |
| 688 | + | |
| 689 | + | |
| 690 | + | |
642 | 691 |
| |
643 | 692 |
| |
644 | 693 |
| |
|
Lines changed: 8 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
158 | 158 |
| |
159 | 159 |
| |
160 | 160 |
| |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
161 | 168 |
| |
162 | 169 |
| |
163 | 170 |
| |
| |||
189 | 196 |
| |
190 | 197 |
| |
191 | 198 |
| |
| 199 | + | |
192 | 200 |
| |
193 | 201 |
| |
194 | 202 |
| |
|
Lines changed: 124 additions & 18 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
85 | 85 |
| |
86 | 86 |
| |
87 | 87 |
| |
| 88 | + | |
88 | 89 |
| |
89 | 90 |
| |
90 | 91 |
| |
| |||
205 | 206 |
| |
206 | 207 |
| |
207 | 208 |
| |
208 |
| - | |
209 | 209 |
| |
| 210 | + | |
| 211 | + | |
210 | 212 |
| |
211 | 213 |
| |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
212 | 218 |
| |
213 | 219 |
| |
214 | 220 |
| |
| |||
256 | 262 |
| |
257 | 263 |
| |
258 | 264 |
| |
| 265 | + | |
| 266 | + | |
| 267 | + | |
259 | 268 |
| |
260 | 269 |
| |
261 | 270 |
| |
| |||
414 | 423 |
| |
415 | 424 |
| |
416 | 425 |
| |
417 |
| - | |
| 426 | + | |
| 427 | + | |
| 428 | + | |
| 429 | + | |
| 430 | + | |
| 431 | + | |
| 432 | + | |
| 433 | + | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
418 | 484 |
| |
419 | 485 |
| |
420 | 486 |
| |
| |||
423 | 489 |
| |
424 | 490 |
| |
425 | 491 |
| |
426 |
| - | |
427 |
| - | |
428 |
| - | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
429 | 502 |
| |
430 |
| - | |
431 |
| - | |
432 |
| - | |
433 |
| - | |
434 | 503 |
| |
435 | 504 |
| |
436 | 505 |
| |
| |||
1073 | 1142 |
| |
1074 | 1143 |
| |
1075 | 1144 |
| |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
1076 | 1183 |
| |
1077 | 1184 |
| |
1078 | 1185 |
| |
| |||
1890 | 1997 |
| |
1891 | 1998 |
| |
1892 | 1999 |
| |
1893 |
| - | |
| 2000 | + | |
| 2001 | + | |
1894 | 2002 |
| |
1895 | 2003 |
| |
1896 | 2004 |
| |
1897 | 2005 |
| |
| 2006 | + | |
| 2007 | + | |
| 2008 | + | |
1898 | 2009 |
| |
1899 | 2010 |
| |
1900 | 2011 |
| |
| |||
1911 | 2022 |
| |
1912 | 2023 |
| |
1913 | 2024 |
| |
1914 |
| - | |
1915 |
| - | |
1916 |
| - | |
1917 |
| - | |
1918 |
| - | |
1919 |
| - | |
| 2025 | + | |
| 2026 | + | |
1920 | 2027 |
| |
1921 | 2028 |
| |
1922 | 2029 |
| |
| |||
1996 | 2103 |
| |
1997 | 2104 |
| |
1998 | 2105 |
| |
1999 |
| - | |
2000 |
| - | |
| 2106 | + | |
2001 | 2107 |
| |
2002 | 2108 |
| |
2003 | 2109 |
| |
|
0 commit comments
Comments
(0)