 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" "$Date$"
.\" 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 \-d][.B \-E][.B \-h][.B \-i][.B \-m .I module-name][.B \-q].br [.B \-O][.B \-OO][.B \-R][.B -Q.I argument][.B \-s][.B \-S][.B \-u].br [.B \-v][.B \-V][.B \-W.I argument][.B \-x][.B \-?].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 you are referred to thePython 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 be viewed by running the .B pydocprogram. .SH COMMAND LINE OPTIONS.TP.B \-BDon't write.I .py[co]files on import. See also PYTHONDONTWRITEBYTECODE..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.B \-dTurn on parser debugging output (for wizards 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.BI "\-m " module-nameSearches .I sys.path for the named module and runs the corresponding .I .py file as a script..TP.B \-OTurn on basic optimizations. This changes the filename extension forcompiled (bytecode) files from.I .pycto \fI.pyo\fP. Given twice, causes docstrings to be discarded..TP.B \-OODiscard docstrings in addition to the \fB-O\fP optimizations..TP.B \-qDo not print the version and copyright messages. These messages are also suppressed in non-interactive mode..TP.B \-RTurn on "hash randomization", so that the hash() values of str, bytes anddatetime objects are "salted" with an unpredictable pseudo-random value.Although they remain constant within an individual Python process, they arenot predictable between repeated invocations of Python..IPThis is intended to provide protection against a denial of servicecaused by carefully-chosen inputs that exploit the worst case performanceof a dict construction, O(n^2) complexity. Seehttp://www.ocert.org/advisories/ocert-2011-003.htmlfor details..TP.BI "\-Q " argumentDivision control; see PEP 238. The argument must be one of "old" (thedefault, int/int and long/long return an int or long), "new" (newdivision semantics, i.e. int/int and long/long returns a float),"warn" (old division semantics with a warning for int/int andlong/long), or "warnall" (old division semantics with a warning forall use of the division operator). For a use of "warnall", see theTools/scripts/fixdiv.py script..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..TP.B \-uForce the binary I/O layers of stdin, stdout and stderr to be unbuffered.The text I/O layer will still be line-buffered..\" Note that there is internal buffering in readlines() and.\" file-object iterators ("for line in sys.stdin") which is not.\" influenced by this option. To work around this, you will want to use.\" "sys.stdin.readline()" inside a "while 1:" loop..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 when searching for a module. Also provides information on module cleanupat exit..TP.B \-V ", " \-\-versionPrints the Python version number of the executable and exits..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.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.I command,it executes the Python statement(s) given as.I 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.I 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.I 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.I 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.I 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 PYTHONY2KSet this to a non-empty string to cause the \fItime\fP module torequire dates specified as strings to include 4-digit years, otherwise2-digit years are converted based on rules described in the \fItime\fPmodule documentation..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 .py[co]files)..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", the effect is the same as specifyingthe \fB-R\fP option: a random value is used to seed the hashes of 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 lead to the same hash values as when hash randomization isdisabled..SH AUTHORThe Python Software Foundation: http://www.python.org/psf.SH INTERNET RESOURCESMain website: http://www.python.org/.brDocumentation: http://docs.python.org/py3k/.brDeveloper resources: http://docs.python.org/devguide/.brDownloads: http://python.org/download/.brModule repository: http://pypi.python.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.
|