summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-04 13:06:58 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-04 13:06:58 (GMT)
commite1b5ac640841e4233bcd0204efcd50fe9b50a6d0 (patch)
treee0baea9c87f7ceee0cba306689bca1f0607b241d /Python
parenta26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124 (diff)
downloadcpython-e1b5ac640841e4233bcd0204efcd50fe9b50a6d0.zip
cpython-e1b5ac640841e4233bcd0204efcd50fe9b50a6d0.tar.gz
cpython-e1b5ac640841e4233bcd0204efcd50fe9b50a6d0.tar.bz2
Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index c33457f..dee4965 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1100,7 +1100,6 @@ static PyStructSequence_Field flags_fields[] = {
{"no_user_site", "-s"},
{"no_site", "-S"},
{"ignore_environment", "-E"},
- {"tabcheck", "-t or -tt"},
{"verbose", "-v"},
#ifdef RISCOS
{"riscos_wimp", "???"},
@@ -1116,9 +1115,9 @@ static PyStructSequence_Desc flags_desc = {
flags__doc__, /* doc */
flags_fields, /* fields */
#ifdef RISCOS
- 12
-#else
11
+#else
+ 10
#endif
};
@@ -1144,7 +1143,6 @@ make_flags(void)
SetFlag(Py_NoUserSiteDirectory);
SetFlag(Py_NoSiteFlag);
SetFlag(Py_IgnoreEnvironmentFlag);
- SetFlag(Py_TabcheckFlag);
SetFlag(Py_VerboseFlag);
#ifdef RISCOS
SetFlag(Py_RISCOSWimpFlag);