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.
1 parent 260e941 commit 7e6d542Copy full SHA for 7e6d542
Python/sysmodule.c
@@ -3511,7 +3511,9 @@ static PyStructSequence_Desc flags_desc = {
3511
"sys.flags", /* name */
3512
flags__doc__, /* doc */
3513
flags_fields, /* fields */
3514
- 19 /* NB - do not increase. new fields are not tuple fields. GH-122575 */
+ 18 /* NB - do not increase beyond 3.14's value of 18. */
3515
+ // New sys.flags fields should NOT be tuple addressable per
3516
+ // https://github.com/python/cpython/issues/122575#issuecomment-2416497086
3517
};
3518
3519
static void
0 commit comments