index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_exceptions.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (#111655)
AN Long
2023-11-03
1
-0/+7
*
gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-1...
Radislav Chugunov
2023-10-23
1
-0/+14
*
gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)
Lysandros Nikolaou
2023-10-16
1
-4/+12
*
gh-107450: Fix testMemoryErrorBigSource using the bigmemtest decorator (GH-11...
Lysandros Nikolaou
2023-10-13
1
-1/+1
*
gh-107450: Fix parser column offset overflow test on Windows (#110768)
Lysandros Nikolaou
2023-10-13
1
-1/+3
*
gh-107450: Raise OverflowError when parser column offset overflows (#110754)
Lysandros Nikolaou
2023-10-12
1
-0/+4
*
gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)
Lysandros Nikolaou
2023-10-12
1
-1/+1
*
gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)
Serhiy Storchaka
2023-09-02
1
-0/+1
*
gh-108634: Py_TRACE_REFS uses a hash table (#108663)
Victor Stinner
2023-08-31
1
-0/+6
*
gh-105724: Add location information to `assert` errors (GH-105935)
Nikita Sobolev
2023-08-16
1
-0/+117
*
gh-103333: Pickle the keyword attributes of AttributeError (#103352)
Charles Machalow
2023-05-12
1
-27/+34
*
gh-102856: Initial implementation of PEP 701 (#102855)
Pablo Galindo Salgado
2023-04-19
1
-1/+2
*
gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)
Irit Katriel
2023-04-06
1
-34/+32
*
gh-89058: remove skip from test_no_hang_on_context_chain_cycle2 (#102903)
Irit Katriel
2023-04-05
1
-1/+0
*
gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)
Irit Katriel
2023-03-18
1
-9/+9
*
GH-101578: Normalize the current exception (GH-101607)
Mark Shannon
2023-02-08
1
-4/+4
*
gh-99482: remove `jython` compatibility parts from stdlib and tests (#99484)
Nikita Sobolev
2022-12-23
1
-4/+3
*
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...
Mark Shannon
2022-10-05
1
-6/+2
*
gh-97008: Add a Python implementation of AttributeError and NameError suggest...
Ćukasz Langa
2022-10-04
1
-500/+3
*
gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (#96...
philg314
2022-09-08
1
-0/+5
*
Increase test coverage of Objects/exceptions.c (GH-94674)
Irit Katriel
2022-07-08
1
-5/+47
*
gh-84623: Remove unused imports in tests (#93772)
Victor Stinner
2022-06-13
1
-1/+0
*
GH-88116: Use a compact format to represent end line and column offsets. (GH-...
Mark Shannon
2022-04-21
1
-1/+1
*
gh-89770: Implement PEP-678 - Exception notes (GH-31317)
Irit Katriel
2022-04-16
1
-13/+19
*
bpo-47212: Improve error messages for un-parenthesized generator expressions ...
Matthieu Dartiailh
2022-04-05
1
-1/+10
*
bpo-46940: Don't override existing AttributeError suggestion information (GH-...
Pablo Galindo Salgado
2022-03-07
1
-0/+18
*
Allow the parser to avoid nested processing of invalid rules (GH-31252)
Pablo Galindo Salgado
2022-02-10
1
-1/+1
*
bpo-46458: Add tests for context of exception in finally block (GH-30986)
Irit Katriel
2022-01-28
1
-0/+50
*
bpo-46442: improve and rename testExceptionCleanupNames (GH-30758)
Yellow Dusk
2022-01-22
1
-2/+14
*
bpo-46339: Fix crash in the parser when computing error text for multi-line f...
Pablo Galindo Salgado
2022-01-11
1
-0/+6
*
bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463)
Pablo Galindo Salgado
2022-01-08
1
-0/+12
*
bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...
Pablo Galindo Salgado
2022-01-04
1
-1/+1
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
1
-0/+2
*
bpo-46054: Correct non-utf8 character tests in test_exceptions (GH-30074)
Pablo Galindo Salgado
2021-12-12
1
-2/+2
*
bpo-46054: Fix parsing error when parsing non-utf8 characters in source files...
Pablo Galindo Salgado
2021-12-12
1
-0/+12
*
bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)
Pablo Galindo Salgado
2021-12-11
1
-3/+4
*
bpo-46004: Fix error location for loops with invalid targets (GH-29959)
Pablo Galindo Salgado
2021-12-07
1
-0/+1
*
bpo-45607: Make it possible to enrich exception displays via setting their __...
Irit Katriel
2021-12-03
1
-0/+21
*
bpo-45786: Allocate space for frame in frame object. (GH-29729)
Mark Shannon
2021-11-29
1
-4/+2
*
bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if insi...
Pablo Galindo Salgado
2021-11-24
1
-2/+2
*
bpo-45871: Refactor except matcher validation into a separate function so tha...
Irit Katriel
2021-11-22
1
-0/+15
*
bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)
Pablo Galindo Salgado
2021-11-20
1
-0/+13
*
bpo-45727: Make the syntax error for missing comma more consistent (GH-29427)
Pablo Galindo Salgado
2021-11-19
1
-0/+1
*
bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (...
Dennis Sweeney
2021-11-17
1
-0/+31
*
bpo-45494: Fix parser crash when reporting errors involving invalid continuat...
Pablo Galindo Salgado
2021-10-19
1
-0/+4
*
bpo-45408: Don't override previous tokenizer errors in the second parser pass...
Pablo Galindo Salgado
2021-10-07
1
-1/+1
*
bpo-45400: Fix suggestion test of test_exceptions (GH-28783)
Victor Stinner
2021-10-07
1
-1/+1
*
Fix typos in the Lib directory (GH-28775)
Christian Clauss
2021-10-06
1
-1/+1
*
[tests] Add missing assert against expected tracebacks in test_exceptions.py ...
andrei kulakov
2021-09-21
1
-0/+1
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
1
-0/+10
[next]