mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.
This commit is contained in:
parent
a26f8ca668
commit
e1b5ac6408
22 changed files with 31 additions and 61 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue