-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathen-US.json
202 lines (202 loc) · 4.27 KB
/
en-US.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
"options": [
{
"name": "-b",
"tip": [
"issue warnings about str(bytes_instance), str(bytearray_instance)and comparing bytes/bytearray with str.\n",
"(-bb: issue errors)"
]
},
{
"name": "-B",
"tip": [
"don't write .pyc files on import;\n",
"also PYTHONDONTWRITEBYTECODE=x"
]
},
{
"name": "-c",
"tip": [
"cmd. program passed in as string (terminates option list)"
]
},
{
"name": "-d",
"tip": [
"turn on parser debugging output (for experts only, only works on debug builds);\n",
"also PYTHONDEBUG=x"
]
},
{
"name": "-E",
"tip": [
"ignore PYTHON* environment variables (such as PYTHONPATH)"
]
},
{
"name": "-i",
"tip": [
"inspect interactively after running script;\n",
"forces a prompt even if stdin does not appear to be a terminal;\n",
"also PYTHONINSPECT=x"
]
},
{
"name": "-I",
"tip": [
"isolate Python from the user's environment (implies -E and -s)"
]
},
{
"name": "-m",
"tip": [
"mod. run library module as a script (terminates option list)"
]
},
{
"name": "-O",
"tip": [
"remove assert and __debug__-dependent statements;\n",
"add .opt-1 before .pyc extension; also PYTHONOPTIMIZE=x"
]
},
{
"name": "-OO",
"tip": [
"do -O changes and also discard docstrings;\n",
"add .opt-2 before .pyc extension"
]
},
{
"name": "-p",
"tip": [
"don't prepend a potentially unsafe path to sys.path"
]
},
{
"name": "-q",
"tip": [
"don't print version and copyright messages on interactive startup"
]
},
{
"name": "-s",
"tip": [
"don't add user site directory to sys.path; also PYTHONNOUSERSITE"
]
},
{
"name": "-S",
"tip": [
"don't imply 'import site' on initialization"
]
},
{
"name": "-u",
"tip": [
"force the stdout and stderr streams to be unbuffered\n",
"this option has no effect on stdin; also PYTHONUNBUFFERED=x"
]
},
{
"name": "-v",
"tip": [
"verbose (trace import statements)\n",
"also PYTHONVERBOSE=x can be supplied multiple times to increase verbosity"
]
},
{
"name": "-W",
"tip": [
"arg\n",
"warning control;\n",
"arg is action:message:category:module:lineno also PYTHONWARNINGS=arg"
]
},
{
"name": "-x",
"tip": [
"skip first line of source, allowing use of non-Unix forms of #!cmd"
]
},
{
"name": "-X",
"tip": [
"opt\n",
"set implementation-specific option"
]
},
{
"name": "--check-hash-based-pycs",
"tip": [
"control how Python invalidates hash-based .pyc files"
],
"next": [
{
"name": "default"
},
{
"name": "always",
"tip": [
"always invalidates hash-based .pyc files"
]
},
{
"name": "never",
"tip": [
"never invalidates hash-based .pyc files"
]
}
]
},
{
"name": "-V",
"alias": [
"--version"
],
"tip": [
"print the Python version number and exit\n",
"when given twice, print more information about the build"
]
},
{
"name": "--help-env",
"tip": [
"print help about Python environment variables and exit"
]
},
{
"name": "--help-xoptions",
"tip": [
"print help about implementation-specific -X options and exit"
]
},
{
"name": "--help-all",
"tip": [
"print complete help information and exit"
]
}
],
"common_options": [
{
"name": "--h",
"alias": [
"-?",
"--help"
],
"tip": [
"U: -h|-?|--help\n",
"print this help message and exit"
]
}
],
"info": {
"completion_info": {
"url": "https://www.python.org",
"description": [
"python - command-line."
]
}
}
}