File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1349,9 +1349,6 @@ static PyStructSequence_Field flags_fields[] = {
13491349 {"no_site" , "-S" },
13501350 {"ignore_environment" , "-E" },
13511351 {"verbose" , "-v" },
1352- #ifdef RISCOS
1353- {"riscos_wimp" , "???" },
1354- #endif
13551352 /* {"unbuffered", "-u"}, */
13561353 /* {"skip_first", "-x"}, */
13571354 {"bytes_warning" , "-b" },
@@ -1364,11 +1361,7 @@ static PyStructSequence_Desc flags_desc = {
13641361 "sys.flags" , /* name */
13651362 flags__doc__ , /* doc */
13661363 flags_fields , /* fields */
1367- #ifdef RISCOS
1368- 13
1369- #else
13701364 12
1371- #endif
13721365};
13731366
13741367static PyObject *
@@ -1393,9 +1386,6 @@ make_flags(void)
13931386 SetFlag (Py_NoSiteFlag );
13941387 SetFlag (Py_IgnoreEnvironmentFlag );
13951388 SetFlag (Py_VerboseFlag );
1396- #ifdef RISCOS
1397- SetFlag (Py_RISCOSWimpFlag );
1398- #endif
13991389 /* SetFlag(saw_unbuffered_flag); */
14001390 /* SetFlag(skipfirstline); */
14011391 SetFlag (Py_BytesWarningFlag );
You can’t perform that action at this time.
0 commit comments