summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_exceptions.py
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-44895: skip test_no_hang_on_context_chain_cycle2 until the refleak is fix...Irit Katriel2021-08-161-3/+1
* bpo-44895: Temporarily add an extra gc.collect() call (GH-27746)Irit Katriel2021-08-131-0/+3
* bpo-33930: Fix typo in the test name. (#27733)Benjamin Peterson2021-08-121-1/+1
* bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-...Pablo Galindo Salgado2021-08-101-0/+15
* bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...Irit Katriel2021-08-101-0/+142
* bpo-34013: Don't consider a grouped expression when reporting legacy print sy...Pablo Galindo Salgado2021-08-011-0/+9
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Pablo Galindo Salgado2021-07-271-7/+5
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-271-0/+6
* bpo-44655: Don't include suggestions for attributes that are the same as the ...Pablo Galindo Salgado2021-07-161-0/+12
* Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)Pablo Galindo Salgado2021-07-161-1/+1
* bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)Pablo Galindo Salgado2021-07-101-2/+2
* Make sure that line number is set correctly for call to __exit__ when handlin...Mark Shannon2021-06-241-7/+24
* bpo-44409: Fix error location in tokenizer errors that happen during initiali...Pablo Galindo2021-06-141-0/+1
* bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...Pablo Galindo2021-06-091-0/+1
* bpo-44349: Fix edge case when displaying text from files with encoding in syn...Pablo Galindo2021-06-081-0/+16
* bpo-44335: Fix a regression when identifying invalid characters in syntax err...Pablo Galindo2021-06-081-0/+1
* bpo-44180: Report generic syntax errors in the furthest position reached in t...Pablo Galindo2021-05-211-0/+1
* bpo-44143: Fix crash in the parser when raising tokenizer errors with an exce...Pablo Galindo2021-05-151-0/+1
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-1/+1
* bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising...Pablo Galindo2021-05-041-1/+1
* bpo-38530: Refactor and improve AttributeError suggestions (GH-25776)Dennis Sweeney2021-05-031-18/+84
* bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n...Mark Shannon2021-04-291-1/+10
* bpo-38530: Require 50% similarity in NameError and AttributeError suggestions...Dennis Sweeney2021-04-271-0/+112
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-231-12/+143
* bpo-43859: Improve the error message for IndentationError exceptions (GH-25431)Pablo Galindo2021-04-211-1/+1
* bpo-25460: Surround suggestions by quotes (GH-25473)Pablo Galindo2021-04-191-14/+14
* bpo-38530: Cover more error paths in error suggestion functions (GH-25462)Pablo Galindo2021-04-171-0/+10
* bpo-38530: Include builtins in NameError suggestions (GH-25460)Pablo Galindo2021-04-171-4/+20
* bpo-38530: Match exactly AttributeError and NameError when offering suggestio...Pablo Galindo2021-04-161-0/+15
* bpo-38530: Make sure that failing to generate suggestions on failure will not...Pablo Galindo2021-04-141-0/+14
* bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo2021-04-141-0/+123
* bpo-38530: Offer suggestions on AttributeError (#16856)Pablo Galindo2021-04-141-0/+159
* bpo-43797: Improve syntax error for invalid comparisons (#25317)Pablo Galindo2021-04-121-1/+1
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142)Inada Naoki2021-04-021-2/+2
* bpo-40176: Improve error messages for unclosed string literals (GH-19346)Batuhan Taskaya2021-01-201-2/+2
* bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140)Lysandros Nikolaou2021-01-141-0/+3
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-171-0/+83
* bpo-30858: Improve error location for expressions with assignments (GH-23753)Pablo Galindo2020-12-131-1/+1
* bpo-42500: Fix recursion in or after except (GH-23568)Mark Shannon2020-12-021-2/+50
* bpo-41659: Disallow curly brace directly after primary (GH-22996)Lysandros Nikolaou2020-10-271-0/+1
* bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)Pablo Galindo2020-09-011-0/+31
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-031-3/+6
* bpo-40334: Produce better error messages on invalid targets (GH-20106)Lysandros Nikolaou2020-06-181-1/+1
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-111-3/+3
* Use subTest in test_exceptions for better error reporting (GH-20140)Pablo Galindo2020-05-171-26/+29
* bpo-40619: Correctly handle error lines in programs without file mode (GH-20090)Pablo Galindo2020-05-141-0/+2
* bpo-40334: Always show the caret on SyntaxErrors (GH-20050)Lysandros Nikolaou2020-05-131-9/+6
* bpo-40334: Error message for invalid default args in function call (GH-19973)Lysandros Nikolaou2020-05-071-2/+2
* bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865)Lysandros Nikolaou2020-05-041-1/+1
* bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782)Batuhan Taskaya2020-05-011-21/+21