Skip to content

Commit

Permalink
Update Python/sysmodule.c
Browse files Browse the repository at this point in the history
Co-authored-by: Bénédikt Tran <[email protected]>
  • Loading branch information
colesbury and picnixz authored Sep 2, 2024
1 parent 7a41cfc commit dbf5189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/sysmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3124,7 +3124,7 @@ static PyStructSequence_Desc flags_desc = {
"sys.flags", /* name */
flags__doc__, /* doc */
flags_fields, /* fields */
sizeof(flags_fields) / sizeof(flags_fields[0]) - 1
Py_ARRAY_LENGTH(flags_fields) - 1
};

static int
Expand Down

0 comments on commit dbf5189

Please sign in to comment.