aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/traceback.py
Commit message (Expand)AuthorAge
* gh-99180: Make `StackSummary.should_show_carets` private (#119554)Alex Waygood2024-05-25
* gh-118893: Evaluate all statements in the new REPL separately (#119318)Pablo Galindo Salgado2024-05-21
* gh-116871: Improve name suggestions in tracebacks (GH-116930)Serhiy Storchaka2024-05-06
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-05
* gh-117225: Move colorize functionality to own internal module (#118283)Hugo van Kemenade2024-05-01
* gh-99180: Remove traceback anchors in return and assign statements that cover...Pablo Galindo Salgado2024-05-01
* gh-112730: Make the test suite resilient to color-activation environment vari...Pablo Galindo Salgado2024-04-24
* gh-117225: Add color to doctest output (#117583)Hugo van Kemenade2024-04-24
* gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__...Jérome Perrin2024-01-16
* gh-110721: Remove unused code from suggestions.c after moving PyErr_Display t...Pablo Galindo Salgado2024-01-08
* gh-112730: Use color to highlight error locations (gh-112732)Pablo Galindo Salgado2023-12-06
* gh-106922: Support multi-line error locations in traceback (attempt 2) (#112097)William Wen2023-12-01
* gh-112332: Deprecate TracebackException.exc_type, add exc_type_str. (#112333)Irit Katriel2023-11-28
* gh-111388: Add `show_group` parameter to `traceback.format_exception_only` (#...Nikita Sobolev2023-10-27
* bpo-43950: handle wide unicode characters in tracebacks (#28150)Batuhan Taskaya2023-10-26
* gh-67224: Show source lines in tracebacks when using the -c option when runni...Pablo Galindo Salgado2023-10-26
* gh-111157: Mention `__notes__` in `traceback.format_exception_only` docstring...Nikita Sobolev2023-10-21
* gh-110805: Allow the repl to show source code and complete tracebacks (#110775)Pablo Galindo Salgado2023-10-13
* gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...Pablo Galindo Salgado2023-10-12
* gh-106922: Fix error location for constructs with spaces and parentheses (#10...Pablo Galindo Salgado2023-09-08
* gh-105292: Add option to make traceback.TracebackException.format_exception_o...Irit Katriel2023-06-06
* gh-89412: Add missing attributes (added in 3.10) to traceback module docs (#1...Jakub Kuczys2023-06-05
* GH-89455: Add missing attributes (added in 3.11) to traceback module docs (#1...Jakub Kuczys2023-05-29
* gh-102799: replace sys.exc_info by sys.exception in inspect and traceback mod...Irit Katriel2023-05-01
* gh-103895: Improve how invalid `Exception.__notes__` are displayed (#103897)Carey Metcalfe2023-05-01
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-18
* gh-99103: Normalize specialized traceback anchors against the current line (G...Batuhan Taskaya2022-11-12
* gh-99139: Improve NameError error suggestion for instances (#99140)Pablo Galindo Salgado2022-11-06
* gh-98878: Use builtins from the bound frame when offering a suggestion (#98880)Batuhan Taskaya2022-10-31
* gh-98744: Prevent column-level decoding crashes on traceback module (#98824)Batuhan Taskaya2022-10-29
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-25
* gh-98254: Include stdlib module names in error messages for NameErrors (#98255)Pablo Galindo Salgado2022-10-15
* gh-97008: Add a Python implementation of AttributeError and NameError suggest...Łukasz Langa2022-10-04
* gh-87822: Make traceback module robust to exceptions from repr() of local val...Simon-Martin Schröder2022-07-11
* gh-93883: elide traceback indicators when possible (#93994)John Belmonte2022-07-11
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-16
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-02
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-03
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-27
* bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel2021-11-05
* bpo-45249: Fix caret location when end_offset is set to 0 (GH-28855)Pablo Galindo Salgado2021-10-16
* bpo-45249: Ensure the traceback module prints correctly syntax errors with ra...Pablo Galindo Salgado2021-09-27
* bpo-41031: Match C and Python code formatting of unprintable exceptions and e...Irit Katriel2021-09-05
* bpo-45075: distinguish between frame and FrameSummary in traceback mo… (GH-...Irit Katriel2021-09-03
* bpo-31299: make it possible to filter out frames from tracebacks (GH-28067)Irit Katriel2021-08-31
* bpo-43950: support some multi-line expressions for PEP 657 (GH-27339)Batuhan Taskaya2021-07-25
* bpo-43950: support long lines in traceback.py (GH-27336)Batuhan Taskaya2021-07-24
* bpo-44569: Decouple frame formatting in traceback.py (GH-27038)Ammar Askar2021-07-16
* bpo-43950: make BinOp specializations more reliable (GH-27126)Batuhan Taskaya2021-07-16
* bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)Batuhan Taskaya2021-07-12