blob: 3645b0206eb2b569bd477a677934835d75a37f0d [file] [log] [blame]
Benjamin Petersonb9869df2016-03-21 22:31:02 -07001.TH PYTHON "1"
Andrew M. Kuchling3afe4f32004-10-07 12:30:54 +00002
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00003.\" To view this file while editing, run it through groff:
4.\" groff -Tascii -man python.man | less
Andrew M. Kuchling3afe4f32004-10-07 12:30:54 +00005
Guido van Rossuma7925f11994-01-26 10:20:16 +00006.SH NAME
7python \- an interpreted, interactive, object-oriented programming language
8.SH SYNOPSIS
9.B python
10[
Matthias Klosec8b16f82010-01-31 16:14:37 +000011.B \-B
12]
13[
Senthil Kumarance3dd0b2013-06-19 22:19:46 -050014.B \-b
15]
16[
Guido van Rossuma7925f11994-01-26 10:20:16 +000017.B \-d
18]
19[
Guido van Rossumb674baf2001-09-05 18:55:34 +000020.B \-E
21]
22[
23.B \-h
24]
25[
Guido van Rossuma7925f11994-01-26 10:20:16 +000026.B \-i
27]
28[
Christian Heimesad73a9c2013-08-10 16:36:18 +020029.B \-I
Andrew M. Kuchling166e6252004-10-07 12:04:50 +000030]
Guido van Rossumb674baf2001-09-05 18:55:34 +000031.br
32 [
Christian Heimesad73a9c2013-08-10 16:36:18 +020033.B \-m
34.I module-name
35]
36[
Senthil Kumarance3dd0b2013-06-19 22:19:46 -050037.B \-q
38]
39[
Matthias Klosec8b16f82010-01-31 16:14:37 +000040.B \-O
41]
42[
R David Murray9c4f09d2011-05-01 11:13:56 -040043.B \-OO
Matthias Klosec8b16f82010-01-31 16:14:37 +000044]
45[
Matthias Klosec8b16f82010-01-31 16:14:37 +000046.B \-s
47]
48[
Guido van Rossumb674baf2001-09-05 18:55:34 +000049.B \-S
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +000050]
51[
Guido van Rossumef5bca31994-05-03 14:15:32 +000052.B \-u
Guido van Rossuma7925f11994-01-26 10:20:16 +000053]
Guido van Rossumb674baf2001-09-05 18:55:34 +000054.br
55 [
Guido van Rossuma7925f11994-01-26 10:20:16 +000056.B \-v
57]
Guido van Rossum07c44c71998-04-10 19:46:00 +000058[
Barry Warsaw64569372000-09-15 18:39:09 +000059.B \-V
60]
Guido van Rossum1378c322000-12-19 03:21:54 +000061[
62.B \-W
63.I argument
64]
Guido van Rossumb674baf2001-09-05 18:55:34 +000065[
66.B \-x
67]
Matthias Klosec8b16f82010-01-31 16:14:37 +000068[
Senthil Kumarance3dd0b2013-06-19 22:19:46 -050069[
70.B \-X
71.I option
72]
Matthias Klosec8b16f82010-01-31 16:14:37 +000073.B \-?
74]
Guido van Rossum4cf4de51997-09-08 04:06:15 +000075.br
76 [
Benjamin Peterson42aa93b2017-12-09 10:26:52 -080077.B \--check-hash-based-pycs
Miro Hrončok16323cb2019-02-25 01:50:29 +010078.I default
79|
80.I always
81|
82.I never
Benjamin Peterson42aa93b2017-12-09 10:26:52 -080083]
84.br
85 [
Guido van Rossuma7925f11994-01-26 10:20:16 +000086.B \-c
87.I command
88|
89.I script
90|
91\-
92]
93[
94.I arguments
95]
96.SH DESCRIPTION
97Python is an interpreted, interactive, object-oriented programming
98language that combines remarkable power with very clear syntax.
Benjamin Petersonb0335ee2015-04-29 18:00:44 -040099For an introduction to programming in Python, see the Python Tutorial.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000100The Python Library Reference documents built-in and standard types,
101constants, functions and modules.
102Finally, the Python Reference Manual describes the syntax and
103semantics of the core language in (perhaps too) much detail.
Guido van Rossumf4a090d2000-09-01 20:36:34 +0000104(These documents may be located via the
105.B "INTERNET RESOURCES"
Fred Drake4c9be9d1999-08-20 13:10:20 +0000106below; they may be installed on your system as well.)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000107.PP
108Python's basic power can be extended with your own modules written in
109C or C++.
Guido van Rossum74faed21996-07-30 19:27:05 +0000110On most systems such modules may be dynamically loaded.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000111Python is also adaptable as an extension language for existing
112applications.
113See the internal documentation for hints.
Andrew M. Kuchling88717f42001-04-05 14:50:40 +0000114.PP
Brett Cannonf299abd2015-04-13 14:21:02 -0400115Documentation for installed Python modules and packages can be
116viewed by running the
Andrew M. Kuchling88717f42001-04-05 14:50:40 +0000117.B pydoc
Brett Cannonf299abd2015-04-13 14:21:02 -0400118program.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000119.SH COMMAND LINE OPTIONS
120.TP
Matthias Klosec8b16f82010-01-31 16:14:37 +0000121.B \-B
122Don't write
Brett Cannon10a7dbd2016-10-21 12:15:14 -0700123.I .pyc
Matthias Klosec8b16f82010-01-31 16:14:37 +0000124files on import. See also PYTHONDONTWRITEBYTECODE.
125.TP
Senthil Kumarance3dd0b2013-06-19 22:19:46 -0500126.B \-b
127Issue warnings about str(bytes_instance), str(bytearray_instance)
128and comparing bytes/bytearray with str. (-bb: issue errors)
129.TP
Guido van Rossumb674baf2001-09-05 18:55:34 +0000130.BI "\-c " command
131Specify the command to execute (see next section).
132This terminates the option list (following options are passed as
133arguments to the command).
134.TP
Benjamin Peterson42aa93b2017-12-09 10:26:52 -0800135.BI "\-\-check-hash-based-pycs " mode
136Configure how Python evaluates the up-to-dateness of hash-based .pyc files.
137.TP
Guido van Rossuma7925f11994-01-26 10:20:16 +0000138.B \-d
Victor Stinner84c4b192017-11-24 22:30:27 +0100139Turn on parser debugging output (for expert only, depending on
Guido van Rossuma7925f11994-01-26 10:20:16 +0000140compilation options).
Guido van Rossum9f65ae01994-02-23 09:10:27 +0000141.TP
Guido van Rossumb674baf2001-09-05 18:55:34 +0000142.B \-E
143Ignore environment variables like PYTHONPATH and PYTHONHOME that modify
144the behavior of the interpreter.
145.TP
Matthias Klosec8b16f82010-01-31 16:14:37 +0000146.B \-h ", " \-? ", "\-\-help
Guido van Rossumb674baf2001-09-05 18:55:34 +0000147Prints the usage for the interpreter executable and exits.
148.TP
Guido van Rossuma7925f11994-01-26 10:20:16 +0000149.B \-i
150When a script is passed as first argument or the \fB\-c\fP option is
151used, enter interactive mode after executing the script or the
Guido van Rossum9f65ae01994-02-23 09:10:27 +0000152command. It does not read the $PYTHONSTARTUP file. This can be
153useful to inspect global variables or a stack trace when a script
154raises an exception.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000155.TP
Christian Heimesad73a9c2013-08-10 16:36:18 +0200156.B \-I
Ned Deily64298ae2015-04-29 14:51:43 -0700157Run Python in isolated mode. This also implies \fB\-E\fP and \fB\-s\fP. In
Serhiy Storchaka225821c2015-12-18 13:05:04 +0200158isolated mode sys.path contains neither the script's directory nor the user's
Christian Heimesad73a9c2013-08-10 16:36:18 +0200159site-packages directory. All PYTHON* environment variables are ignored, too.
160Further restrictions may be imposed to prevent the user from injecting
161malicious code.
162.TP
Andrew M. Kuchling166e6252004-10-07 12:04:50 +0000163.BI "\-m " module-name
Brett Cannonf299abd2015-04-13 14:21:02 -0400164Searches
165.I sys.path
166for the named module and runs the corresponding
167.I .py
Andrew M. Kuchling166e6252004-10-07 12:04:50 +0000168file as a script.
169.TP
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000170.B \-O
Cheryl Sabella186b6062018-02-24 22:04:40 -0500171Remove assert statements and any code conditional on the value of
172__debug__; augment the filename for compiled (bytecode) files by
173adding .opt-1 before the .pyc extension.
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000174.TP
R David Murray9c4f09d2011-05-01 11:13:56 -0400175.B \-OO
Cheryl Sabella186b6062018-02-24 22:04:40 -0500176Do \fB-O\fP and also discard docstrings; change the filename for
177compiled (bytecode) files by adding .opt-2 before the .pyc extension.
Matthias Klosec8b16f82010-01-31 16:14:37 +0000178.TP
Georg Brandl9d871192010-12-04 10:47:18 +0000179.B \-q
Brett Cannonf299abd2015-04-13 14:21:02 -0400180Do not print the version and copyright messages. These messages are
Georg Brandl9d871192010-12-04 10:47:18 +0000181also suppressed in non-interactive mode.
182.TP
Matthias Klosec8b16f82010-01-31 16:14:37 +0000183.B \-s
184Don't add user site directory to sys.path.
185.TP
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000186.B \-S
187Disable the import of the module
188.I site
189and the site-dependent manipulations of
190.I sys.path
Éric Araujoc09fca62011-03-23 02:06:24 +0100191that it entails. Also disable these manipulations if
192.I site
193is explicitly imported later.
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000194.TP
Guido van Rossumef5bca31994-05-03 14:15:32 +0000195.B \-u
Berker Peksag7f580972017-10-13 15:16:31 +0300196Force the stdout and stderr streams to be unbuffered.
197This option has no effect on the stdin stream.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000198.TP
199.B \-v
200Print a message each time a module is initialized, showing the place
Fred Drake4c9be9d1999-08-20 13:10:20 +0000201(filename or built-in module) from which it is loaded. When given
Brett Cannonf299abd2015-04-13 14:21:02 -0400202twice, print a message for each file that is checked for when
Fred Drake4c9be9d1999-08-20 13:10:20 +0000203searching for a module. Also provides information on module cleanup
204at exit.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000205.TP
Matthias Klosec8b16f82010-01-31 16:14:37 +0000206.B \-V ", " \-\-version
INADA Naoki0e175a62016-11-21 20:57:14 +0900207Prints the Python version number of the executable and exits. When given
208twice, print more information about the build.
Barry Warsaw64569372000-09-15 18:39:09 +0000209.TP
Guido van Rossum1378c322000-12-19 03:21:54 +0000210.BI "\-W " argument
211Warning control. Python sometimes prints warning message to
212.IR sys.stderr .
213A typical warning message has the following form:
214.IB file ":" line ": " category ": " message.
215By default, each warning is printed once for each source line where it
216occurs. This option controls how often warnings are printed.
217Multiple
218.B \-W
219options may be given; when a warning matches more than one
220option, the action for the last matching option is performed.
221Invalid
222.B \-W
223options are ignored (a warning message is printed about invalid
224options when the first warning is issued). Warnings can also be
225controlled from within a Python program using the
226.I warnings
227module.
228
229The simplest form of
230.I argument
231is one of the following
232.I action
233strings (or a unique abbreviation):
234.B ignore
235to ignore all warnings;
236.B default
237to explicitly request the default behavior (printing each warning once
238per source line);
239.B all
240to print a warning each time it occurs (this may generate many
241messages if a warning is triggered repeatedly for the same source
Fred Drakebd2e3b02001-07-26 21:25:58 +0000242line, such as inside a loop);
Guido van Rossum1378c322000-12-19 03:21:54 +0000243.B module
Georg Brandleeb575f2009-06-24 06:42:05 +0000244to print each warning only the first time it occurs in each
Guido van Rossum1378c322000-12-19 03:21:54 +0000245module;
246.B once
247to print each warning only the first time it occurs in the program; or
248.B error
249to raise an exception instead of printing a warning message.
250
251The full form of
252.I argument
253is
254.IB action : message : category : module : line.
255Here,
256.I action
257is as explained above but only applies to messages that match the
258remaining fields. Empty fields match all values; trailing empty
259fields may be omitted. The
260.I message
261field matches the start of the warning message printed; this match is
262case-insensitive. The
263.I category
264field matches the warning category. This must be a class name; the
265match test whether the actual warning category of the message is a
266subclass of the specified warning category. The full class name must
267be given. The
268.I module
269field matches the (fully-qualified) module name; this match is
270case-sensitive. The
271.I line
272field matches the line number, where zero matches all line numbers and
273is thus equivalent to an omitted line number.
274.TP
Senthil Kumarance3dd0b2013-06-19 22:19:46 -0500275.BI "\-X " option
Pablo Galindo13951c72020-02-23 20:48:27 +0000276Set implementation specific option. The following options are available:
277
278 -X faulthandler: enable faulthandler
279
280 -X showrefcount: output the total reference count and number of used
281 memory blocks when the program finishes or after each statement in the
282 interactive interpreter. This only works on debug builds
283
284 -X tracemalloc: start tracing Python memory allocations using the
285 tracemalloc module. By default, only the most recent frame is stored in a
286 traceback of a trace. Use -X tracemalloc=NFRAME to start tracing with a
287 traceback limit of NFRAME frames
288
289 -X showalloccount: output the total count of allocated objects for each
290 type when the program finishes. This only works when Python was built with
291 COUNT_ALLOCS defined
292
293 -X importtime: show how long each import takes. It shows module name,
294 cumulative time (including nested imports) and self time (excluding
295 nested imports). Note that its output may be broken in multi-threaded
296 application. Typical usage is python3 -X importtime -c 'import asyncio'
297
298 -X dev: enable CPython’s “development mode”, introducing additional runtime
299 checks which are too expensive to be enabled by default. It will not be
300 more verbose than the default if the code is correct: new warnings are
301 only emitted when an issue is detected. Effect of the developer mode:
302 * Add default warning filter, as -W default
303 * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks() C function
304 * Enable the faulthandler module to dump the Python traceback on a crash
305 * Enable asyncio debug mode
306 * Set the dev_mode attribute of sys.flags to True
307 * io.IOBase destructor logs close() exceptions
308
309 -X utf8: enable UTF-8 mode for operating system interfaces, overriding the default
310 locale-aware mode. -X utf8=0 explicitly disables UTF-8 mode (even when it would
311 otherwise activate automatically). See PYTHONUTF8 for more details
312
313 -X pycache_prefix=PATH: enable writing .pyc files to a parallel tree rooted at the
314 given directory instead of to the code tree.
Senthil Kumarance3dd0b2013-06-19 22:19:46 -0500315.TP
Guido van Rossumb674baf2001-09-05 18:55:34 +0000316.B \-x
317Skip the first line of the source. This is intended for a DOS
318specific hack only. Warning: the line numbers in error messages will
319be off by one!
Guido van Rossuma7925f11994-01-26 10:20:16 +0000320.SH INTERPRETER INTERFACE
321The interpreter interface resembles that of the UNIX shell: when
322called with standard input connected to a tty device, it prompts for
323commands and executes them until an EOF is read; when called with a
324file name argument or with a file as standard input, it reads and
325executes a
326.I script
327from that file;
328when called with
329.B \-c
doko@ubuntu.comd8623e82012-06-20 13:16:31 +0200330.IR command ,
Guido van Rossuma7925f11994-01-26 10:20:16 +0000331it executes the Python statement(s) given as
doko@ubuntu.comd8623e82012-06-20 13:16:31 +0200332.IR command .
Guido van Rossuma7925f11994-01-26 10:20:16 +0000333Here
334.I command
335may contain multiple statements separated by newlines.
336Leading whitespace is significant in Python statements!
Matthias Klose31a58df2005-03-20 14:16:03 +0000337In non-interactive mode, the entire input is parsed before it is
Guido van Rossuma7925f11994-01-26 10:20:16 +0000338executed.
339.PP
340If available, the script name and additional arguments thereafter are
341passed to the script in the Python variable
doko@ubuntu.comd8623e82012-06-20 13:16:31 +0200342.IR sys.argv ,
Guido van Rossuma7925f11994-01-26 10:20:16 +0000343which is a list of strings (you must first
344.I import sys
345to be able to access it).
346If no script name is given,
Guido van Rossumf4a090d2000-09-01 20:36:34 +0000347.I sys.argv[0]
348is an empty string; if
Guido van Rossuma7925f11994-01-26 10:20:16 +0000349.B \-c
350is used,
351.I sys.argv[0]
352contains the string
353.I '-c'.
Guido van Rossum74faed21996-07-30 19:27:05 +0000354Note that options interpreted by the Python interpreter itself
Guido van Rossuma7925f11994-01-26 10:20:16 +0000355are not placed in
doko@ubuntu.comd8623e82012-06-20 13:16:31 +0200356.IR sys.argv .
Guido van Rossuma7925f11994-01-26 10:20:16 +0000357.PP
358In interactive mode, the primary prompt is `>>>'; the second prompt
359(which appears when a command is not complete) is `...'.
360The prompts can be changed by assignment to
361.I sys.ps1
362or
doko@ubuntu.comd8623e82012-06-20 13:16:31 +0200363.IR sys.ps2 .
Guido van Rossuma7925f11994-01-26 10:20:16 +0000364The interpreter quits when it reads an EOF at a prompt.
365When an unhandled exception occurs, a stack trace is printed and
366control returns to the primary prompt; in non-interactive mode, the
367interpreter exits after printing the stack trace.
368The interrupt signal raises the
369.I Keyboard\%Interrupt
370exception; other UNIX signals are not caught (except that SIGPIPE is
371sometimes ignored, in favor of the
372.I IOError
373exception). Error messages are written to stderr.
374.SH FILES AND DIRECTORIES
375These are subject to difference depending on local installation
Fred Drake4c9be9d1999-08-20 13:10:20 +0000376conventions; ${prefix} and ${exec_prefix} are installation-dependent
377and should be interpreted as for GNU software; they may be the same.
378The default for both is \fI/usr/local\fP.
379.IP \fI${exec_prefix}/bin/python\fP
Guido van Rossuma7925f11994-01-26 10:20:16 +0000380Recommended location of the interpreter.
Fred Drake4c9be9d1999-08-20 13:10:20 +0000381.PP
382.I ${prefix}/lib/python<version>
383.br
384.I ${exec_prefix}/lib/python<version>
385.RS
386Recommended locations of the directories containing the standard
387modules.
388.RE
389.PP
390.I ${prefix}/include/python<version>
391.br
392.I ${exec_prefix}/include/python<version>
393.RS
394Recommended locations of the directories containing the include files
395needed for developing Python extensions and embedding the
396interpreter.
397.RE
Guido van Rossuma7925f11994-01-26 10:20:16 +0000398.SH ENVIRONMENT VARIABLES
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000399.IP PYTHONHOME
400Change the location of the standard Python libraries. By default, the
Fred Drake4c9be9d1999-08-20 13:10:20 +0000401libraries are searched in ${prefix}/lib/python<version> and
402${exec_prefix}/lib/python<version>, where ${prefix} and ${exec_prefix}
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000403are installation-dependent directories, both defaulting to
Fred Drake4c9be9d1999-08-20 13:10:20 +0000404\fI/usr/local\fP. When $PYTHONHOME is set to a single directory, its value
405replaces both ${prefix} and ${exec_prefix}. To specify different values
406for these, set $PYTHONHOME to ${prefix}:${exec_prefix}.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000407.IP PYTHONPATH
408Augments the default search path for module files.
409The format is the same as the shell's $PATH: one or more directory
410pathnames separated by colons.
Matthias Klose31a58df2005-03-20 14:16:03 +0000411Non-existent directories are silently ignored.
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000412The default search path is installation dependent, but generally
Fred Drake4c9be9d1999-08-20 13:10:20 +0000413begins with ${prefix}/lib/python<version> (see PYTHONHOME above).
Guido van Rossum4cf4de51997-09-08 04:06:15 +0000414The default search path is always appended to $PYTHONPATH.
Guido van Rossum74faed21996-07-30 19:27:05 +0000415If a script argument is given, the directory containing the script is
416inserted in the path in front of $PYTHONPATH.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000417The search path can be manipulated from within a Python program as the
418variable
doko@ubuntu.comd8623e82012-06-20 13:16:31 +0200419.IR sys.path .
Guido van Rossuma7925f11994-01-26 10:20:16 +0000420.IP PYTHONSTARTUP
421If this is the name of a readable file, the Python commands in that
422file are executed before the first prompt is displayed in interactive
423mode.
424The file is executed in the same name space where interactive commands
425are executed so that objects defined or imported in it can be used
426without qualification in the interactive session.
427You can also change the prompts
428.I sys.ps1
429and
430.I sys.ps2
431in this file.
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000432.IP PYTHONOPTIMIZE
433If this is set to a non-empty string it is equivalent to specifying
434the \fB\-O\fP option. If set to an integer, it is equivalent to
435specifying \fB\-O\fP multiple times.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000436.IP PYTHONDEBUG
437If this is set to a non-empty string it is equivalent to specifying
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000438the \fB\-d\fP option. If set to an integer, it is equivalent to
439specifying \fB\-d\fP multiple times.
Matthias Klosec8b16f82010-01-31 16:14:37 +0000440.IP PYTHONDONTWRITEBYTECODE
441If this is set to a non-empty string it is equivalent to specifying
442the \fB\-B\fP option (don't try to write
Brett Cannon10a7dbd2016-10-21 12:15:14 -0700443.I .pyc
Matthias Klosec8b16f82010-01-31 16:14:37 +0000444files).
Guido van Rossuma7925f11994-01-26 10:20:16 +0000445.IP PYTHONINSPECT
446If this is set to a non-empty string it is equivalent to specifying
447the \fB\-i\fP option.
Benjamin Petersonee85a1d2010-10-13 22:20:15 +0000448.IP PYTHONIOENCODING
449If this is set before running the interpreter, it overrides the encoding used
450for stdin/stdout/stderr, in the syntax
451.IB encodingname ":" errorhandler
452The
453.IB errorhandler
454part is optional and has the same meaning as in str.encode. For stderr, the
455.IB errorhandler
456 part is ignored; the handler will always be \'backslashreplace\'.
Matthias Klosec8b16f82010-01-31 16:14:37 +0000457.IP PYTHONNOUSERSITE
Benjamin Petersonee85a1d2010-10-13 22:20:15 +0000458If this is set to a non-empty string it is equivalent to specifying the
459\fB\-s\fP option (Don't add the user site directory to sys.path).
Guido van Rossumef5bca31994-05-03 14:15:32 +0000460.IP PYTHONUNBUFFERED
Guido van Rossuma7925f11994-01-26 10:20:16 +0000461If this is set to a non-empty string it is equivalent to specifying
Guido van Rossumef5bca31994-05-03 14:15:32 +0000462the \fB\-u\fP option.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000463.IP PYTHONVERBOSE
464If this is set to a non-empty string it is equivalent to specifying
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000465the \fB\-v\fP option. If set to an integer, it is equivalent to
Brett Cannonf299abd2015-04-13 14:21:02 -0400466specifying \fB\-v\fP multiple times.
Philip Jenvey0805ca32010-04-07 04:04:10 +0000467.IP PYTHONWARNINGS
468If this is set to a comma-separated string it is equivalent to
469specifying the \fB\-W\fP option for each separate value.
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100470.IP PYTHONHASHSEED
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500471If this variable is set to "random", a random value is used to seed the hashes
Miss Islington (bot)076d0b92019-08-24 03:19:51 -0700472of str and bytes objects.
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100473
474If PYTHONHASHSEED is set to an integer value, it is used as a fixed seed for
475generating the hash() of the types covered by the hash randomization. Its
476purpose is to allow repeatable hashing, such as for selftests for the
477interpreter itself, or to allow a cluster of python processes to share hash
478values.
479
480The integer must be a decimal number in the range [0,4294967295]. Specifying
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500481the value 0 will disable hash randomization.
Berker Peksag9863de02018-07-09 22:17:54 +0300482.IP PYTHONMALLOC
483Set the Python memory allocators and/or install debug hooks. The available
484memory allocators are
485.IR malloc
486and
487.IR pymalloc .
488The available debug hooks are
489.IR debug ,
490.IR malloc_debug ,
491and
492.IR pymalloc_debug .
493.IP
494When Python is compiled in debug mode, the default is
495.IR pymalloc_debug
496and the debug hooks are automatically used. Otherwise, the default is
497.IR pymalloc .
498.IP PYTHONMALLOCSTATS
499If set to a non-empty string, Python will print statistics of the pymalloc
500memory allocator every time a new pymalloc object arena is created, and on
501shutdown.
502.IP
503This variable is ignored if the
504.RB $ PYTHONMALLOC
505environment variable is used to force the
506.BR malloc (3)
507allocator of the C library, or if Python is configured without pymalloc support.
508.IP PYTHONASYNCIODEBUG
509If this environment variable is set to a non-empty string, enable the debug
510mode of the asyncio module.
511.IP PYTHONTRACEMALLOC
512If this environment variable is set to a non-empty string, start tracing
513Python memory allocations using the tracemalloc module.
514.IP
515The value of the variable is the maximum number of frames stored in a
516traceback of a trace. For example,
517.IB PYTHONTRACEMALLOC=1
518stores only the most recent frame.
519.IP PYTHONFAULTHANDLER
520If this environment variable is set to a non-empty string,
521.IR faulthandler.enable()
522is called at startup: install a handler for SIGSEGV, SIGFPE, SIGABRT, SIGBUS
523and SIGILL signals to dump the Python traceback.
524.IP
525This is equivalent to the \fB-X faulthandler\fP option.
526.IP PYTHONEXECUTABLE
527If this environment variable is set,
528.IB sys.argv[0]
529will be set to its value instead of the value got through the C runtime. Only
530works on Mac OS X.
531.IP PYTHONUSERBASE
532Defines the user base directory, which is used to compute the path of the user
533.IR site-packages
534directory and Distutils installation paths for
535.IR "python setup\.py install \-\-user" .
536.IP PYTHONPROFILEIMPORTTIME
537If this environment variable is set to a non-empty string, Python will
538show how long each import takes. This is exactly equivalent to setting
539\fB\-X importtime\fP on the command line.
Stéphane Wirtelb7fd7382018-07-29 12:27:16 +0200540.IP PYTHONBREAKPOINT
541If this environment variable is set to 0, it disables the default debugger. It
542can be set to the callable of your debugger of choice.
Berker Peksag9863de02018-07-09 22:17:54 +0300543.SS Debug-mode variables
544Setting these variables only has an effect in a debug build of Python, that is,
545if Python was configured with the
546\fB\--with-pydebug\fP build option.
547.IP PYTHONTHREADDEBUG
548If this environment variable is set, Python will print threading debug info.
549.IP PYTHONDUMPREFS
550If this environment variable is set, Python will dump objects and reference
551counts still alive after shutting down the interpreter.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000552.SH AUTHOR
Benjamin Peterson37c4f782015-05-10 21:19:18 -0400553The Python Software Foundation: https://www.python.org/psf/
Guido van Rossum74faed21996-07-30 19:27:05 +0000554.SH INTERNET RESOURCES
Benjamin Peterson755640b2015-04-30 17:37:11 -0400555Main website: https://www.python.org/
Guido van Rossum74faed21996-07-30 19:27:05 +0000556.br
Benjamin Peterson755640b2015-04-30 17:37:11 -0400557Documentation: https://docs.python.org/
Guido van Rossumf4a090d2000-09-01 20:36:34 +0000558.br
Lisa Hewus Fresh384899d2017-08-30 09:37:43 -0700559Developer resources: https://devguide.python.org/
Guido van Rossumf4a090d2000-09-01 20:36:34 +0000560.br
Benjamin Peterson755640b2015-04-30 17:37:11 -0400561Downloads: https://www.python.org/downloads/
Guido van Rossumf4a090d2000-09-01 20:36:34 +0000562.br
Ned Deily9d6d06e2018-06-11 00:45:50 -0400563Module repository: https://pypi.org/
Guido van Rossum74faed21996-07-30 19:27:05 +0000564.br
Fred Drakebd2e3b02001-07-26 21:25:58 +0000565Newsgroups: comp.lang.python, comp.lang.python.announce
Guido van Rossumf4a090d2000-09-01 20:36:34 +0000566.SH LICENSING
567Python is distributed under an Open Source license. See the file
568"LICENSE" in the Python source distribution for information on terms &
569conditions for accessing and otherwise using Python and for a
570DISCLAIMER OF ALL WARRANTIES.