Skip to content

Commit 8316769

Browse files
authored
gh-110805: Fix test_peg_generator after the change in the parser for REPL tracebacks (#110814)
Fix test_peg_generator after the change in the parser for REPL tracebacks
1 parent e1d8c65 commit 8316769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/peg_generator/peg_extension/peg_extension.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ parse_file(PyObject *self, PyObject *args, PyObject *kwds)
5252
PyCompilerFlags flags = _PyCompilerFlags_INIT;
5353
mod_ty res = _PyPegen_run_parser_from_file_pointer(
5454
fp, Py_file_input, filename_ob,
55-
NULL, NULL, NULL, &flags, NULL, arena);
55+
NULL, NULL, NULL, &flags, NULL, NULL, arena);
5656
fclose(fp);
5757
if (res == NULL) {
5858
goto error;

0 commit comments

Comments
 (0)