We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PyExc_OverflowError
fuzz_ast_literal_eval
1 parent c9d1234 commit a929e80Copy full SHA for a929e80
Modules/_xxtestfuzz/fuzzer.c
@@ -428,6 +428,7 @@ static int fuzz_ast_literal_eval(const char* data, size_t size) {
428
PyErr_ExceptionMatches(PyExc_TypeError) ||
429
PyErr_ExceptionMatches(PyExc_SyntaxError) ||
430
PyErr_ExceptionMatches(PyExc_MemoryError) ||
431
+ PyErr_ExceptionMatches(PyExc_OverflowError) ||
432
PyErr_ExceptionMatches(PyExc_RecursionError))
433
) {
434
PyErr_Clear();
0 commit comments