 Merged revisions 70518,70521,70590,70594-70595 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
- Fix comment macro in python.man
........
r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
close the file even if an exception occurs #5536
........
r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
clarify the type of data returned
........
r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
Remove the sys.version_info shortcut, since they cause the APIs
to return different information than the _sys_version() output
used in previous Python versions.
This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
Added more tests for the various platform functions.
........
r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
News item for the platform.py fix (r70594).
........
17 years ago |
|
.TH PYTHON "1"
.\" To view this file while editing, run it through groff:.\" groff -Tascii -man python.man | less
.SH NAMEpython \- an interpreted, interactive, object-oriented programming language.SH SYNOPSIS.B python[.B \-B][.B \-b][.B \-d][.B \-E][.B \-h][.B \-i][.B \-I].br [.B \-m.I module-name][.B \-q][.B \-O][.B \-OO][.B \-s][.B \-S][.B \-u].br [.B \-v][.B \-V][.B \-W.I argument][.B \-x][[.B \-X.I option].B \-?].br [.B \--check-hash-based-pycs\'default\'|\'always\'|\'never\'].br [.B \-c.I command|.I script|\-][.I arguments].SH DESCRIPTIONPython is an interpreted, interactive, object-oriented programminglanguage that combines remarkable power with very clear syntax.For an introduction to programming in Python, see the Python Tutorial.The Python Library Reference documents built-in and standard types,constants, functions and modules.Finally, the Python Reference Manual describes the syntax andsemantics of the core language in (perhaps too) much detail.(These documents may be located via the.B "INTERNET RESOURCES"below; they may be installed on your system as well.).PPPython's basic power can be extended with your own modules written inC or C++.On most systems such modules may be dynamically loaded.Python is also adaptable as an extension language for existingapplications.See the internal documentation for hints..PPDocumentation for installed Python modules and packages can beviewed by running the.B pydocprogram..SH COMMAND LINE OPTIONS.TP.B \-BDon't write.I .pycfiles on import. See also PYTHONDONTWRITEBYTECODE..TP.B \-bIssue warnings about str(bytes_instance), str(bytearray_instance)and comparing bytes/bytearray with str. (-bb: issue errors).TP.BI "\-c " commandSpecify the command to execute (see next section).This terminates the option list (following options are passed asarguments to the command)..TP.BI "\-\-check-hash-based-pycs " modeConfigure how Python evaluates the up-to-dateness of hash-based .pyc files..TP.B \-dTurn on parser debugging output (for expert only, depending oncompilation options)..TP.B \-EIgnore environment variables like PYTHONPATH and PYTHONHOME that modifythe behavior of the interpreter..TP.B \-h ", " \-? ", "\-\-helpPrints the usage for the interpreter executable and exits..TP.B \-iWhen a script is passed as first argument or the \fB\-c\fP option isused, enter interactive mode after executing the script or thecommand. It does not read the $PYTHONSTARTUP file. This can beuseful to inspect global variables or a stack trace when a scriptraises an exception..TP.B \-IRun Python in isolated mode. This also implies \fB\-E\fP and \fB\-s\fP. Inisolated mode sys.path contains neither the script's directory nor the user'ssite-packages directory. All PYTHON* environment variables are ignored, too.Further restrictions may be imposed to prevent the user from injectingmalicious code..TP.BI "\-m " module-nameSearches.I sys.pathfor the named module and runs the corresponding.I .pyfile as a script..TP.B \-ORemove assert statements and any code conditional on the value of__debug__; augment the filename for compiled (bytecode) files byadding .opt-1 before the .pyc extension..TP.B \-OODo \fB-O\fP and also discard docstrings; change the filename forcompiled (bytecode) files by adding .opt-2 before the .pyc extension..TP.B \-qDo not print the version and copyright messages. These messages arealso suppressed in non-interactive mode..TP.B \-sDon't add user site directory to sys.path..TP.B \-SDisable the import of the module.I siteand the site-dependent manipulations of.I sys.paththat it entails. Also disable these manipulations if.I siteis explicitly imported later..TP.B \-uForce the stdout and stderr streams to be unbuffered.This option has no effect on the stdin stream..TP.B \-vPrint a message each time a module is initialized, showing the place(filename or built-in module) from which it is loaded. When giventwice, print a message for each file that is checked for whensearching for a module. Also provides information on module cleanupat exit..TP.B \-V ", " \-\-versionPrints the Python version number of the executable and exits. When giventwice, print more information about the build..TP.BI "\-W " argumentWarning control. Python sometimes prints warning message to.IR sys.stderr .A typical warning message has the following form:.IB file ":" line ": " category ": " message.By default, each warning is printed once for each source line where itoccurs. This option controls how often warnings are printed.Multiple.B \-Woptions may be given; when a warning matches more than oneoption, the action for the last matching option is performed.Invalid.B \-Woptions are ignored (a warning message is printed about invalidoptions when the first warning is issued). Warnings can also becontrolled from within a Python program using the.I warningsmodule.
The simplest form of.I argumentis one of the following.I actionstrings (or a unique abbreviation):.B ignoreto ignore all warnings;.B defaultto explicitly request the default behavior (printing each warning onceper source line);.B allto print a warning each time it occurs (this may generate manymessages if a warning is triggered repeatedly for the same sourceline, such as inside a loop);.B moduleto print each warning only the first time it occurs in eachmodule;.B onceto print each warning only the first time it occurs in the program; or.B errorto raise an exception instead of printing a warning message.
The full form of.I argumentis.IB action : message : category : module : line.Here,.I actionis as explained above but only applies to messages that match theremaining fields. Empty fields match all values; trailing emptyfields may be omitted. The.I messagefield matches the start of the warning message printed; this match iscase-insensitive. The.I categoryfield matches the warning category. This must be a class name; thematch test whether the actual warning category of the message is asubclass of the specified warning category. The full class name mustbe given. The.I modulefield matches the (fully-qualified) module name; this match iscase-sensitive. The.I linefield matches the line number, where zero matches all line numbers andis thus equivalent to an omitted line number..TP.BI "\-X " optionSet implementation specific option..TP.B \-xSkip the first line of the source. This is intended for a DOSspecific hack only. Warning: the line numbers in error messages willbe off by one!.SH INTERPRETER INTERFACEThe interpreter interface resembles that of the UNIX shell: whencalled with standard input connected to a tty device, it prompts forcommands and executes them until an EOF is read; when called with afile name argument or with a file as standard input, it reads andexecutes a.I scriptfrom that file;when called with.B \-c.IR command ,it executes the Python statement(s) given as.IR command .Here.I commandmay contain multiple statements separated by newlines.Leading whitespace is significant in Python statements!In non-interactive mode, the entire input is parsed before it isexecuted..PPIf available, the script name and additional arguments thereafter arepassed to the script in the Python variable.IR sys.argv ,which is a list of strings (you must first.I import systo be able to access it).If no script name is given,.I sys.argv[0]is an empty string; if.B \-cis used,.I sys.argv[0]contains the string.I '-c'.Note that options interpreted by the Python interpreter itselfare not placed in.IR sys.argv ..PPIn interactive mode, the primary prompt is `>>>'; the second prompt(which appears when a command is not complete) is `...'.The prompts can be changed by assignment to.I sys.ps1or.IR sys.ps2 .The interpreter quits when it reads an EOF at a prompt.When an unhandled exception occurs, a stack trace is printed andcontrol returns to the primary prompt; in non-interactive mode, theinterpreter exits after printing the stack trace.The interrupt signal raises the.I Keyboard\%Interruptexception; other UNIX signals are not caught (except that SIGPIPE issometimes ignored, in favor of the.I IOErrorexception). Error messages are written to stderr..SH FILES AND DIRECTORIESThese are subject to difference depending on local installationconventions; ${prefix} and ${exec_prefix} are installation-dependentand should be interpreted as for GNU software; they may be the same.The default for both is \fI/usr/local\fP..IP \fI${exec_prefix}/bin/python\fPRecommended location of the interpreter..PP.I ${prefix}/lib/python<version>.br.I ${exec_prefix}/lib/python<version>.RSRecommended locations of the directories containing the standardmodules..RE.PP.I ${prefix}/include/python<version>.br.I ${exec_prefix}/include/python<version>.RSRecommended locations of the directories containing the include filesneeded for developing Python extensions and embedding theinterpreter..RE.SH ENVIRONMENT VARIABLES.IP PYTHONHOMEChange the location of the standard Python libraries. By default, thelibraries are searched in ${prefix}/lib/python<version> and${exec_prefix}/lib/python<version>, where ${prefix} and ${exec_prefix}are installation-dependent directories, both defaulting to\fI/usr/local\fP. When $PYTHONHOME is set to a single directory, its valuereplaces both ${prefix} and ${exec_prefix}. To specify different valuesfor these, set $PYTHONHOME to ${prefix}:${exec_prefix}..IP PYTHONPATHAugments the default search path for module files.The format is the same as the shell's $PATH: one or more directorypathnames separated by colons.Non-existent directories are silently ignored.The default search path is installation dependent, but generallybegins with ${prefix}/lib/python<version> (see PYTHONHOME above).The default search path is always appended to $PYTHONPATH.If a script argument is given, the directory containing the script isinserted in the path in front of $PYTHONPATH.The search path can be manipulated from within a Python program as thevariable.IR sys.path ..IP PYTHONSTARTUPIf this is the name of a readable file, the Python commands in thatfile are executed before the first prompt is displayed in interactivemode.The file is executed in the same name space where interactive commandsare executed so that objects defined or imported in it can be usedwithout qualification in the interactive session.You can also change the prompts.I sys.ps1and.I sys.ps2in this file..IP PYTHONOPTIMIZEIf this is set to a non-empty string it is equivalent to specifyingthe \fB\-O\fP option. If set to an integer, it is equivalent tospecifying \fB\-O\fP multiple times..IP PYTHONDEBUGIf this is set to a non-empty string it is equivalent to specifyingthe \fB\-d\fP option. If set to an integer, it is equivalent tospecifying \fB\-d\fP multiple times..IP PYTHONDONTWRITEBYTECODEIf this is set to a non-empty string it is equivalent to specifyingthe \fB\-B\fP option (don't try to write.I .pycfiles)..IP PYTHONINSPECTIf this is set to a non-empty string it is equivalent to specifyingthe \fB\-i\fP option..IP PYTHONIOENCODINGIf this is set before running the interpreter, it overrides the encoding usedfor stdin/stdout/stderr, in the syntax.IB encodingname ":" errorhandlerThe.IB errorhandlerpart is optional and has the same meaning as in str.encode. For stderr, the.IB errorhandler part is ignored; the handler will always be \'backslashreplace\'..IP PYTHONNOUSERSITEIf this is set to a non-empty string it is equivalent to specifying the\fB\-s\fP option (Don't add the user site directory to sys.path)..IP PYTHONUNBUFFEREDIf this is set to a non-empty string it is equivalent to specifyingthe \fB\-u\fP option..IP PYTHONVERBOSEIf this is set to a non-empty string it is equivalent to specifyingthe \fB\-v\fP option. If set to an integer, it is equivalent tospecifying \fB\-v\fP multiple times..IP PYTHONWARNINGSIf this is set to a comma-separated string it is equivalent tospecifying the \fB\-W\fP option for each separate value..IP PYTHONHASHSEEDIf this variable is set to "random", a random value is used to seed the hashesof str, bytes and datetime objects.
If PYTHONHASHSEED is set to an integer value, it is used as a fixed seed forgenerating the hash() of the types covered by the hash randomization. Itspurpose is to allow repeatable hashing, such as for selftests for theinterpreter itself, or to allow a cluster of python processes to share hashvalues.
The integer must be a decimal number in the range [0,4294967295]. Specifyingthe value 0 will disable hash randomization..IP PYTHONMALLOCSet the Python memory allocators and/or install debug hooks. The availablememory allocators are.IR mallocand.IR pymalloc .The available debug hooks are.IR debug ,.IR malloc_debug ,and.IR pymalloc_debug ..IPWhen Python is compiled in debug mode, the default is.IR pymalloc_debugand the debug hooks are automatically used. Otherwise, the default is.IR pymalloc ..IP PYTHONMALLOCSTATSIf set to a non-empty string, Python will print statistics of the pymallocmemory allocator every time a new pymalloc object arena is created, and onshutdown..IPThis variable is ignored if the.RB $ PYTHONMALLOCenvironment variable is used to force the.BR malloc (3)allocator of the C library, or if Python is configured without pymalloc support..IP PYTHONASYNCIODEBUGIf this environment variable is set to a non-empty string, enable the debugmode of the asyncio module..IP PYTHONTRACEMALLOCIf this environment variable is set to a non-empty string, start tracingPython memory allocations using the tracemalloc module..IPThe value of the variable is the maximum number of frames stored in atraceback of a trace. For example,.IB PYTHONTRACEMALLOC=1stores only the most recent frame..IP PYTHONFAULTHANDLERIf this environment variable is set to a non-empty string,.IR faulthandler.enable()is called at startup: install a handler for SIGSEGV, SIGFPE, SIGABRT, SIGBUSand SIGILL signals to dump the Python traceback..IPThis is equivalent to the \fB-X faulthandler\fP option..IP PYTHONEXECUTABLEIf this environment variable is set,.IB sys.argv[0]will be set to its value instead of the value got through the C runtime. Onlyworks on Mac OS X..IP PYTHONUSERBASEDefines the user base directory, which is used to compute the path of the user.IR site-packagesdirectory and Distutils installation paths for.IR "python setup\.py install \-\-user" ..IP PYTHONPROFILEIMPORTTIMEIf this environment variable is set to a non-empty string, Python willshow how long each import takes. This is exactly equivalent to setting\fB\-X importtime\fP on the command line..IP PYTHONBREAKPOINTIf this environment variable is set to 0, it disables the default debugger. Itcan be set to the callable of your debugger of choice..SS Debug-mode variablesSetting these variables only has an effect in a debug build of Python, that is,if Python was configured with the\fB\--with-pydebug\fP build option..IP PYTHONTHREADDEBUGIf this environment variable is set, Python will print threading debug info..IP PYTHONDUMPREFSIf this environment variable is set, Python will dump objects and referencecounts still alive after shutting down the interpreter..SH AUTHORThe Python Software Foundation: https://www.python.org/psf/.SH INTERNET RESOURCESMain website: https://www.python.org/.brDocumentation: https://docs.python.org/.brDeveloper resources: https://devguide.python.org/.brDownloads: https://www.python.org/downloads/.brModule repository: https://pypi.org/.brNewsgroups: comp.lang.python, comp.lang.python.announce.SH LICENSINGPython is distributed under an Open Source license. See the file"LICENSE" in the Python source distribution for information on terms &conditions for accessing and otherwise using Python and for aDISCLAIMER OF ALL WARRANTIES.
|