Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
one more bug
  • Loading branch information
iritkatriel committed Jan 30, 2023
commit 542b60e9b7b512e0ff108c450507e28b422984a1
2 changes: 1 addition & 1 deletion Python/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -3018,7 +3018,7 @@ compiler_lambda(struct compiler *c, expr_ty e)
location loc = LOC(e);
funcflags = compiler_default_arguments(c, loc, args);
if (funcflags == -1) {
return 0;
return ERROR;
}

_Py_DECLARE_STR(anon_lambda, "<lambda>");
Expand Down