Lines Matching +full:- +full:- +full:non +full:- +full:interactive
4 .\" groff -Tascii -man python.man | less
7 python \- an interpreted, interactive, object-oriented programming language
11 .B \-B
14 .B \-d
17 .B \-E
20 .B \-h
23 .B \-i
26 .B \-m
27 .I module-name
31 .B \-O
34 .B \-OO
37 .B \-R
40 .B -Q
44 .B \-s
47 .B \-S
50 .B \-t
53 .B \-u
57 .B \-v
60 .B \-V
63 .B \-W
67 .B \-x
70 .B \-3
73 .B \-?
77 .B \-c
82 \-
88 Python is an interpreted, interactive, object-oriented programming
91 The Python Library Reference documents built-in and standard types,
112 .B \-B
117 .BI "\-c " command
122 .B \-d
126 .B \-E
130 .B \-h ", " \-? ", "\-\-help
133 .B \-i
134 When a script is passed as first argument or the \fB\-c\fP option is
135 used, enter interactive mode after executing the script or the
140 .BI "\-m " module-name
147 .B \-O
153 .B \-OO
154 Discard docstrings in addition to the \fB-O\fP optimizations.
156 .B \-R
158 datetime objects are "salted" with an unpredictable pseudo-random value.
163 caused by carefully-chosen inputs that exploit the worst case performance
165 http://www.ocert.org/advisories/ocert-2011-003.html
168 .BI "\-Q " argument
177 .B \-s
180 .B \-S
183 and the site-dependent manipulations of
187 .B \-t
192 .B \-u
196 file-object iterators ("for line in sys.stdin") which is not
200 .B \-v
202 (filename or built-in module) from which it is loaded. When given
207 .B \-V ", " \-\-version
210 .BI "\-W " argument
218 .B \-W
222 .B \-W
262 case-insensitive. The
269 field matches the (fully-qualified) module name; this match is
270 case-sensitive. The
275 .B \-x
280 .B \-3
291 .B \-c
299 In non-interactive mode, the entire input is parsed before it is
311 .B \-c
315 .I '-c'.
320 In interactive mode, the primary prompt is `>>>'; the second prompt
328 control returns to the primary prompt; in non-interactive mode, the
338 conventions; ${prefix} and ${exec_prefix} are installation-dependent
361 User-specific initialization file loaded by the \fIuser\fP module;
368 are installation-dependent directories, both defaulting to
376 Non-existent directories are silently ignored.
387 file are executed before the first prompt is displayed in interactive
389 The file is executed in the same name space where interactive commands
391 without qualification in the interactive session.
398 Set this to a non-empty string to cause the \fItime\fP module to
399 require dates specified as strings to include 4-digit years, otherwise
400 2-digit years are converted based on rules described in the \fItime\fP
403 If this is set to a non-empty string it is equivalent to specifying
404 the \fB\-O\fP option. If set to an integer, it is equivalent to
405 specifying \fB\-O\fP multiple times.
407 If this is set to a non-empty string it is equivalent to specifying
408 the \fB\-d\fP option. If set to an integer, it is equivalent to
409 specifying \fB\-d\fP multiple times.
411 If this is set to a non-empty string it is equivalent to specifying
412 the \fB\-B\fP option (don't try to write
416 If this is set to a non-empty string it is equivalent to specifying
417 the \fB\-i\fP option.
428 If this is set to a non-empty string it is equivalent to specifying the
429 \fB\-s\fP option (Don't add the user site directory to sys.path).
431 If this is set to a non-empty string it is equivalent to specifying
432 the \fB\-u\fP option.
434 If this is set to a non-empty string it is equivalent to specifying
435 the \fB\-v\fP option. If set to an integer, it is equivalent to
436 specifying \fB\-v\fP multiple times.
438 If this is set to a comma-separated string it is equivalent to
439 specifying the \fB\-W\fP option for each separate value.
442 the \fB-R\fP option: a random value is used to seed the hashes of str,