[Python-checkins] cpython: RISCOS support has been removed a long time ago. Remove last remains in
christian.heimes
python-checkins at python.org
Mon Nov 19 00:44:52 CET 2012
http://hg.python.org/cpython/rev/ceb0184c7f44
changeset: 80520:ceb0184c7f44
user: Christian Heimes <christian at cheimes.de>
date: Mon Nov 19 00:44:37 2012 +0100
summary:
RISCOS support has been removed a long time ago. Remove last remains in sys.flags code. #16501 can be closed, too.
files:
Python/sysmodule.c | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1349,9 +1349,6 @@
{"no_site", "-S"},
{"ignore_environment", "-E"},
{"verbose", "-v"},
-#ifdef RISCOS
- {"riscos_wimp", "???"},
-#endif
/* {"unbuffered", "-u"}, */
/* {"skip_first", "-x"}, */
{"bytes_warning", "-b"},
@@ -1364,11 +1361,7 @@
"sys.flags", /* name */
flags__doc__, /* doc */
flags_fields, /* fields */
-#ifdef RISCOS
- 13
-#else
12
-#endif
};
static PyObject*
@@ -1393,9 +1386,6 @@
SetFlag(Py_NoSiteFlag);
SetFlag(Py_IgnoreEnvironmentFlag);
SetFlag(Py_VerboseFlag);
-#ifdef RISCOS
- SetFlag(Py_RISCOSWimpFlag);
-#endif
/* SetFlag(saw_unbuffered_flag); */
/* SetFlag(skipfirstline); */
SetFlag(Py_BytesWarningFlag);
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list