Skip to content

Commit

Permalink
removed extra return from w_object
Browse files Browse the repository at this point in the history
  • Loading branch information
chgnrdv authored Oct 14, 2023
1 parent 882d8b7 commit 88e69b1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Python/marshal.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ w_object(PyObject *v, WFILE *p)

if (p->depth > MAX_MARSHAL_STACK_DEPTH) {
p->error = WFERR_NESTEDTOODEEP;
return 0;
}
else if (v == NULL) {
w_byte(TYPE_NULL, p);
Expand Down

0 comments on commit 88e69b1

Please sign in to comment.