summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_traceback.py
Commit message (Expand)AuthorAgeFilesLines
* gh-99894: Ensure the local names don't collide with the test file in tracebac...Pablo Galindo Salgado2022-12-011-6/+6
* gh-99103: Normalize specialized traceback anchors against the current line (G...Batuhan Taskaya2022-11-121-1/+35
* gh-99139: Improve NameError error suggestion for instances (#99140)Pablo Galindo Salgado2022-11-061-0/+25
* gh-98878: Use builtins from the bound frame when offering a suggestion (#98880)Batuhan Taskaya2022-10-311-0/+9
* gh-98744: Prevent column-level decoding crashes on traceback module (#98824)Batuhan Taskaya2022-10-291-0/+50
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-251-0/+122
* gh-98254: Include stdlib module names in error messages for NameErrors (#98255)Pablo Galindo Salgado2022-10-151-0/+15
* gh-97008: Add a Python implementation of AttributeError and NameError suggest...Łukasz Langa2022-10-041-19/+493
* gh-95259: add test for traceback with angle-bracketed filename (GH-95260)Irit Katriel2022-07-261-0/+15
* gh-93883: Fix some tests involving traceback formatting (#94737)John Belmonte2022-07-111-4/+0
* gh-87822: Make traceback module robust to exceptions from repr() of local val...Simon-Martin Schröder2022-07-111-2/+6
* gh-93883: elide traceback indicators when possible (#93994)John Belmonte2022-07-111-96/+70
* GH-94694: Fix column offsets for multi-line method lookups (GH-94697)Brandt Bucher2022-07-101-0/+51
* GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961)Irit Katriel2022-06-201-1/+27
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-131-1/+0
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-211-0/+1
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-161-38/+155
* bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31...Irit Katriel2022-02-221-28/+28
* bpo-46098: Add test for multiline syntax error traceback (GH-30695)Russel Webber2022-01-271-7/+41
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-1/+3
* bpo-46425: fix direct invocation of `test_traceback` (GH-30746)Nikita Sobolev2022-01-221-2/+3
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-021-0/+16
* bpo-37971: fix the position of decorator application (GH-30027)Carl Friedrich Bolz-Tereick2021-12-101-0/+45
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+69
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-271-0/+11
* bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel2021-11-051-1/+514
* bpo-45249: Fix caret location when end_offset is set to 0 (GH-28855)Pablo Galindo Salgado2021-10-161-0/+10
* bpo-45249: Ensure the traceback module prints correctly syntax errors with ra...Pablo Galindo Salgado2021-09-271-0/+13
* bpo-41031: Match C and Python code formatting of unprintable exceptions and e...Irit Katriel2021-09-051-3/+29
* bpo-45075: distinguish between frame and FrameSummary in traceback mo… (GH-...Irit Katriel2021-09-031-5/+5
* bpo-45083: Include the exception class qualname when formatting an exception ...Irit Katriel2021-09-031-0/+13
* bpo-31299: make it possible to filter out frames from tracebacks (GH-28067)Irit Katriel2021-08-311-0/+28
* bpo-43950: support some multi-line expressions for PEP 657 (GH-27339)Batuhan Taskaya2021-07-251-0/+24
* bpo-43950: support long lines in traceback.py (GH-27336)Batuhan Taskaya2021-07-241-0/+22
* bpo-43950: ensure source_line is present when specialising the traceback (GH-...Batuhan Taskaya2021-07-241-0/+25
* bpo-44569: Decouple frame formatting in traceback.py (GH-27038)Ammar Askar2021-07-161-0/+15
* bpo-43950: make BinOp specializations more reliable (GH-27126)Batuhan Taskaya2021-07-151-0/+38
* bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)Batuhan Taskaya2021-07-121-2/+80
* bpo-44446: support lineno being None in traceback.FrameSummary (GH-26781)Filipe Laíns2021-07-081-0/+4
* Remove __cleanenv from PEP-657 tests (GH-27060)Ammar Askar2021-07-071-2/+2
* bpo-43950: Add option to opt-out of PEP-657 (GH-27023)Ammar Askar2021-07-071-17/+88
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-041-21/+155
* bpo-43024: improve signature (in help, etc) for functions taking sent… (GH-...Irit Katriel2021-06-171-0/+16
* bpo-33809: add the TracebackException.print() method (GH-24231)Irit Katriel2021-05-221-0/+17
* bpo-43146: fix None-handling in single-arg traceback.print_exception(None) (G...Irit Katriel2021-02-231-0/+5
* bpo-43146: fix regression in traceback.print_exception(None) (GH-24463)Irit Katriel2021-02-231-0/+18
* bpo-42877: add the 'compact' param to TracebackException's __init__ (#24179)Irit Katriel2021-01-151-0/+40
* bpo-42848: remove recursion from TracebackException (GH-24158)Irit Katriel2021-01-121-0/+25
* bpo-34463: Make python tracebacks identical to C tracebacks for SyntaxErrors ...Irit Katriel2020-12-221-0/+25
* bpo-42482: remove reference to exc_traceback from TracebackException (GH-23531)Irit Katriel2020-12-011-0/+22