Guido van Rossum | 97bac53 | 2001-09-05 18:57:51 +0000 | [diff] [blame] | 1 | .TH PYTHON "1" "$Date$" |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 2 | .SH NAME |
| 3 | python \- an interpreted, interactive, object-oriented programming language |
| 4 | .SH SYNOPSIS |
| 5 | .B python |
| 6 | [ |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 7 | .B \-d |
| 8 | ] |
| 9 | [ |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 10 | .B \-E |
| 11 | ] |
| 12 | [ |
| 13 | .B \-h |
| 14 | ] |
| 15 | [ |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 16 | .B \-i |
| 17 | ] |
| 18 | [ |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 19 | .B \-O |
| 20 | ] |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 21 | .br |
| 22 | [ |
| 23 | .B -Q |
| 24 | .I argument |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 25 | ] |
| 26 | [ |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 27 | .B \-S |
Neil Schemenauer | 7d4bb9f | 2001-07-23 16:30:27 +0000 | [diff] [blame] | 28 | ] |
| 29 | [ |
Guido van Rossum | 29d465b | 1998-04-10 19:36:09 +0000 | [diff] [blame] | 30 | .B \-t |
| 31 | ] |
| 32 | [ |
Guido van Rossum | ef5bca3 | 1994-05-03 14:15:32 +0000 | [diff] [blame] | 33 | .B \-u |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 34 | ] |
| 35 | [ |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 36 | .B \-U |
| 37 | ] |
| 38 | .br |
| 39 | [ |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 40 | .B \-v |
| 41 | ] |
Guido van Rossum | 07c44c7 | 1998-04-10 19:46:00 +0000 | [diff] [blame] | 42 | [ |
Barry Warsaw | 6456937 | 2000-09-15 18:39:09 +0000 | [diff] [blame] | 43 | .B \-V |
| 44 | ] |
Guido van Rossum | 1378c32 | 2000-12-19 03:21:54 +0000 | [diff] [blame] | 45 | [ |
| 46 | .B \-W |
| 47 | .I argument |
| 48 | ] |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 49 | [ |
| 50 | .B \-x |
| 51 | ] |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 52 | .br |
| 53 | [ |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 54 | .B \-c |
| 55 | .I command |
| 56 | | |
| 57 | .I script |
| 58 | | |
| 59 | \- |
| 60 | ] |
| 61 | [ |
| 62 | .I arguments |
| 63 | ] |
| 64 | .SH DESCRIPTION |
| 65 | Python is an interpreted, interactive, object-oriented programming |
| 66 | language that combines remarkable power with very clear syntax. |
| 67 | For an introduction to programming in Python you are referred to the |
| 68 | Python Tutorial. |
| 69 | The Python Library Reference documents built-in and standard types, |
| 70 | constants, functions and modules. |
| 71 | Finally, the Python Reference Manual describes the syntax and |
| 72 | semantics of the core language in (perhaps too) much detail. |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 73 | (These documents may be located via the |
| 74 | .B "INTERNET RESOURCES" |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 75 | below; they may be installed on your system as well.) |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 76 | .PP |
| 77 | Python's basic power can be extended with your own modules written in |
| 78 | C or C++. |
Guido van Rossum | 74faed2 | 1996-07-30 19:27:05 +0000 | [diff] [blame] | 79 | On most systems such modules may be dynamically loaded. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 80 | Python is also adaptable as an extension language for existing |
| 81 | applications. |
| 82 | See the internal documentation for hints. |
Andrew M. Kuchling | 88717f4 | 2001-04-05 14:50:40 +0000 | [diff] [blame] | 83 | .PP |
| 84 | Documentation for installed Python modules and packages can be |
| 85 | viewed by running the |
| 86 | .B pydoc |
| 87 | program. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 88 | .SH COMMAND LINE OPTIONS |
| 89 | .TP |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 90 | .BI "\-c " command |
| 91 | Specify the command to execute (see next section). |
| 92 | This terminates the option list (following options are passed as |
| 93 | arguments to the command). |
| 94 | .TP |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 95 | .B \-d |
| 96 | Turn on parser debugging output (for wizards only, depending on |
| 97 | compilation options). |
Guido van Rossum | 9f65ae0 | 1994-02-23 09:10:27 +0000 | [diff] [blame] | 98 | .TP |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 99 | .B \-E |
| 100 | Ignore environment variables like PYTHONPATH and PYTHONHOME that modify |
| 101 | the behavior of the interpreter. |
| 102 | .TP |
| 103 | .B \-h |
| 104 | Prints the usage for the interpreter executable and exits. |
| 105 | .TP |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 106 | .B \-i |
| 107 | When a script is passed as first argument or the \fB\-c\fP option is |
| 108 | used, enter interactive mode after executing the script or the |
Guido van Rossum | 9f65ae0 | 1994-02-23 09:10:27 +0000 | [diff] [blame] | 109 | command. It does not read the $PYTHONSTARTUP file. This can be |
| 110 | useful to inspect global variables or a stack trace when a script |
| 111 | raises an exception. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 112 | .TP |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 113 | .B \-O |
| 114 | Turn on basic optimizations. This changes the filename extension for |
| 115 | compiled (bytecode) files from |
| 116 | .I .pyc |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 117 | to \fI.pyo\fP. Given twice, causes docstrings to be discarded. |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 118 | .TP |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 119 | .BI "\-Q " argument |
| 120 | Division control; see PEP 238. The argument must be one of "old" (the |
| 121 | default, int/int and long/long return an int or long), "new" (new |
| 122 | division semantics, i.e. int/int and long/long returns a float), |
| 123 | "warn" (old division semantics with a warning for int/int and |
| 124 | long/long), or "warnall" (old division semantics with a warning for |
| 125 | all use of the division operator). For a use of "warnall", see the |
| 126 | Tools/scripts/fixdiv.py script. |
| 127 | .TP |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 128 | .B \-S |
| 129 | Disable the import of the module |
| 130 | .I site |
| 131 | and the site-dependent manipulations of |
| 132 | .I sys.path |
| 133 | that it entails. |
| 134 | .TP |
Guido van Rossum | 29d465b | 1998-04-10 19:36:09 +0000 | [diff] [blame] | 135 | .B \-t |
| 136 | Issue a warning when a source file mixes tabs and spaces for |
| 137 | indentation in a way that makes it depend on the worth of a tab |
| 138 | expressed in spaces. Issue an error when the option is given twice. |
| 139 | .TP |
Guido van Rossum | ef5bca3 | 1994-05-03 14:15:32 +0000 | [diff] [blame] | 140 | .B \-u |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 141 | Force stdin, stdout and stderr to be totally unbuffered. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 142 | .TP |
| 143 | .B \-v |
| 144 | Print a message each time a module is initialized, showing the place |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 145 | (filename or built-in module) from which it is loaded. When given |
| 146 | twice, print a message for each file that is checked for when |
| 147 | searching for a module. Also provides information on module cleanup |
| 148 | at exit. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 149 | .TP |
Barry Warsaw | 6456937 | 2000-09-15 18:39:09 +0000 | [diff] [blame] | 150 | .B \-V |
| 151 | Prints the Python version number of the executable and exits. |
| 152 | .TP |
Guido van Rossum | 1378c32 | 2000-12-19 03:21:54 +0000 | [diff] [blame] | 153 | .BI "\-W " argument |
| 154 | Warning control. Python sometimes prints warning message to |
| 155 | .IR sys.stderr . |
| 156 | A typical warning message has the following form: |
| 157 | .IB file ":" line ": " category ": " message. |
| 158 | By default, each warning is printed once for each source line where it |
| 159 | occurs. This option controls how often warnings are printed. |
| 160 | Multiple |
| 161 | .B \-W |
| 162 | options may be given; when a warning matches more than one |
| 163 | option, the action for the last matching option is performed. |
| 164 | Invalid |
| 165 | .B \-W |
| 166 | options are ignored (a warning message is printed about invalid |
| 167 | options when the first warning is issued). Warnings can also be |
| 168 | controlled from within a Python program using the |
| 169 | .I warnings |
| 170 | module. |
| 171 | |
| 172 | The simplest form of |
| 173 | .I argument |
| 174 | is one of the following |
| 175 | .I action |
| 176 | strings (or a unique abbreviation): |
| 177 | .B ignore |
| 178 | to ignore all warnings; |
| 179 | .B default |
| 180 | to explicitly request the default behavior (printing each warning once |
| 181 | per source line); |
| 182 | .B all |
| 183 | to print a warning each time it occurs (this may generate many |
| 184 | messages if a warning is triggered repeatedly for the same source |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 185 | line, such as inside a loop); |
Guido van Rossum | 1378c32 | 2000-12-19 03:21:54 +0000 | [diff] [blame] | 186 | .B module |
| 187 | to print each warning only only the first time it occurs in each |
| 188 | module; |
| 189 | .B once |
| 190 | to print each warning only the first time it occurs in the program; or |
| 191 | .B error |
| 192 | to raise an exception instead of printing a warning message. |
| 193 | |
| 194 | The full form of |
| 195 | .I argument |
| 196 | is |
| 197 | .IB action : message : category : module : line. |
| 198 | Here, |
| 199 | .I action |
| 200 | is as explained above but only applies to messages that match the |
| 201 | remaining fields. Empty fields match all values; trailing empty |
| 202 | fields may be omitted. The |
| 203 | .I message |
| 204 | field matches the start of the warning message printed; this match is |
| 205 | case-insensitive. The |
| 206 | .I category |
| 207 | field matches the warning category. This must be a class name; the |
| 208 | match test whether the actual warning category of the message is a |
| 209 | subclass of the specified warning category. The full class name must |
| 210 | be given. The |
| 211 | .I module |
| 212 | field matches the (fully-qualified) module name; this match is |
| 213 | case-sensitive. The |
| 214 | .I line |
| 215 | field matches the line number, where zero matches all line numbers and |
| 216 | is thus equivalent to an omitted line number. |
| 217 | .TP |
Guido van Rossum | b674baf | 2001-09-05 18:55:34 +0000 | [diff] [blame] | 218 | .B \-x |
| 219 | Skip the first line of the source. This is intended for a DOS |
| 220 | specific hack only. Warning: the line numbers in error messages will |
| 221 | be off by one! |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 222 | .SH INTERPRETER INTERFACE |
| 223 | The interpreter interface resembles that of the UNIX shell: when |
| 224 | called with standard input connected to a tty device, it prompts for |
| 225 | commands and executes them until an EOF is read; when called with a |
| 226 | file name argument or with a file as standard input, it reads and |
| 227 | executes a |
| 228 | .I script |
| 229 | from that file; |
| 230 | when called with |
| 231 | .B \-c |
| 232 | .I command, |
| 233 | it executes the Python statement(s) given as |
| 234 | .I command. |
| 235 | Here |
| 236 | .I command |
| 237 | may contain multiple statements separated by newlines. |
| 238 | Leading whitespace is significant in Python statements! |
| 239 | In non-interactive mode, the entire input is parsed befored it is |
| 240 | executed. |
| 241 | .PP |
| 242 | If available, the script name and additional arguments thereafter are |
| 243 | passed to the script in the Python variable |
| 244 | .I sys.argv , |
| 245 | which is a list of strings (you must first |
| 246 | .I import sys |
| 247 | to be able to access it). |
| 248 | If no script name is given, |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 249 | .I sys.argv[0] |
| 250 | is an empty string; if |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 251 | .B \-c |
| 252 | is used, |
| 253 | .I sys.argv[0] |
| 254 | contains the string |
| 255 | .I '-c'. |
Guido van Rossum | 74faed2 | 1996-07-30 19:27:05 +0000 | [diff] [blame] | 256 | Note that options interpreted by the Python interpreter itself |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 257 | are not placed in |
| 258 | .I sys.argv. |
| 259 | .PP |
| 260 | In interactive mode, the primary prompt is `>>>'; the second prompt |
| 261 | (which appears when a command is not complete) is `...'. |
| 262 | The prompts can be changed by assignment to |
| 263 | .I sys.ps1 |
| 264 | or |
| 265 | .I sys.ps2. |
| 266 | The interpreter quits when it reads an EOF at a prompt. |
| 267 | When an unhandled exception occurs, a stack trace is printed and |
| 268 | control returns to the primary prompt; in non-interactive mode, the |
| 269 | interpreter exits after printing the stack trace. |
| 270 | The interrupt signal raises the |
| 271 | .I Keyboard\%Interrupt |
| 272 | exception; other UNIX signals are not caught (except that SIGPIPE is |
| 273 | sometimes ignored, in favor of the |
| 274 | .I IOError |
| 275 | exception). Error messages are written to stderr. |
| 276 | .SH FILES AND DIRECTORIES |
| 277 | These are subject to difference depending on local installation |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 278 | conventions; ${prefix} and ${exec_prefix} are installation-dependent |
| 279 | and should be interpreted as for GNU software; they may be the same. |
| 280 | The default for both is \fI/usr/local\fP. |
| 281 | .IP \fI${exec_prefix}/bin/python\fP |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 282 | Recommended location of the interpreter. |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 283 | .PP |
| 284 | .I ${prefix}/lib/python<version> |
| 285 | .br |
| 286 | .I ${exec_prefix}/lib/python<version> |
| 287 | .RS |
| 288 | Recommended locations of the directories containing the standard |
| 289 | modules. |
| 290 | .RE |
| 291 | .PP |
| 292 | .I ${prefix}/include/python<version> |
| 293 | .br |
| 294 | .I ${exec_prefix}/include/python<version> |
| 295 | .RS |
| 296 | Recommended locations of the directories containing the include files |
| 297 | needed for developing Python extensions and embedding the |
| 298 | interpreter. |
| 299 | .RE |
| 300 | .IP \fI~/.pythonrc.py\fP |
| 301 | User-specific initialization file loaded by the \fIuser\fP module; |
| 302 | not used by default or by most applications. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 303 | .SH ENVIRONMENT VARIABLES |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 304 | .IP PYTHONHOME |
| 305 | Change the location of the standard Python libraries. By default, the |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 306 | libraries are searched in ${prefix}/lib/python<version> and |
| 307 | ${exec_prefix}/lib/python<version>, where ${prefix} and ${exec_prefix} |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 308 | are installation-dependent directories, both defaulting to |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 309 | \fI/usr/local\fP. When $PYTHONHOME is set to a single directory, its value |
| 310 | replaces both ${prefix} and ${exec_prefix}. To specify different values |
| 311 | for these, set $PYTHONHOME to ${prefix}:${exec_prefix}. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 312 | .IP PYTHONPATH |
| 313 | Augments the default search path for module files. |
| 314 | The format is the same as the shell's $PATH: one or more directory |
| 315 | pathnames separated by colons. |
| 316 | Non-existant directories are silently ignored. |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 317 | The default search path is installation dependent, but generally |
Fred Drake | 4c9be9d | 1999-08-20 13:10:20 +0000 | [diff] [blame] | 318 | begins with ${prefix}/lib/python<version> (see PYTHONHOME above). |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 319 | The default search path is always appended to $PYTHONPATH. |
Guido van Rossum | 74faed2 | 1996-07-30 19:27:05 +0000 | [diff] [blame] | 320 | If a script argument is given, the directory containing the script is |
| 321 | inserted in the path in front of $PYTHONPATH. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 322 | The search path can be manipulated from within a Python program as the |
| 323 | variable |
| 324 | .I sys.path . |
| 325 | .IP PYTHONSTARTUP |
| 326 | If this is the name of a readable file, the Python commands in that |
| 327 | file are executed before the first prompt is displayed in interactive |
| 328 | mode. |
| 329 | The file is executed in the same name space where interactive commands |
| 330 | are executed so that objects defined or imported in it can be used |
| 331 | without qualification in the interactive session. |
| 332 | You can also change the prompts |
| 333 | .I sys.ps1 |
| 334 | and |
| 335 | .I sys.ps2 |
| 336 | in this file. |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 337 | .IP PYTHONY2K |
| 338 | Set this to a non-empty string to cause the \fItime\fP module to |
| 339 | require dates specified as strings to include 4-digit years, otherwise |
| 340 | 2-digit years are converted based on rules described in the \fItime\fP |
| 341 | module documnetation. |
Guido van Rossum | 9abaf4d | 2001-10-12 22:17:56 +0000 | [diff] [blame] | 342 | .IP PYTHONOPTIMIZE |
| 343 | If this is set to a non-empty string it is equivalent to specifying |
| 344 | the \fB\-O\fP option. If set to an integer, it is equivalent to |
| 345 | specifying \fB\-O\fP multiple times. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 346 | .IP PYTHONDEBUG |
| 347 | If this is set to a non-empty string it is equivalent to specifying |
Guido van Rossum | 9abaf4d | 2001-10-12 22:17:56 +0000 | [diff] [blame] | 348 | the \fB\-d\fP option. If set to an integer, it is equivalent to |
| 349 | specifying \fB\-d\fP multiple times. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 350 | .IP PYTHONINSPECT |
| 351 | If this is set to a non-empty string it is equivalent to specifying |
| 352 | the \fB\-i\fP option. |
Guido van Rossum | ef5bca3 | 1994-05-03 14:15:32 +0000 | [diff] [blame] | 353 | .IP PYTHONUNBUFFERED |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 354 | If this is set to a non-empty string it is equivalent to specifying |
Guido van Rossum | ef5bca3 | 1994-05-03 14:15:32 +0000 | [diff] [blame] | 355 | the \fB\-u\fP option. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 356 | .IP PYTHONVERBOSE |
| 357 | If this is set to a non-empty string it is equivalent to specifying |
Guido van Rossum | 9abaf4d | 2001-10-12 22:17:56 +0000 | [diff] [blame] | 358 | the \fB\-v\fP option. If set to an integer, it is equivalent to |
| 359 | specifying \fB\-v\fP multiple times. |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 360 | .SH AUTHOR |
| 361 | .nf |
| 362 | Guido van Rossum |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 363 | .PP |
Guido van Rossum | 1378c32 | 2000-12-19 03:21:54 +0000 | [diff] [blame] | 364 | E-mail: guido@python.org |
Guido van Rossum | a7925f1 | 1994-01-26 10:20:16 +0000 | [diff] [blame] | 365 | .fi |
Guido van Rossum | 4cf4de5 | 1997-09-08 04:06:15 +0000 | [diff] [blame] | 366 | .PP |
| 367 | And a cast of thousands. |
Guido van Rossum | 74faed2 | 1996-07-30 19:27:05 +0000 | [diff] [blame] | 368 | .SH INTERNET RESOURCES |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 369 | Main website: http://www.python.org/ |
Guido van Rossum | 74faed2 | 1996-07-30 19:27:05 +0000 | [diff] [blame] | 370 | .br |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 371 | Documentation: http://www.python.org/doc/ |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 372 | .br |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 373 | Community website: http://starship.python.net/ |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 374 | .br |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 375 | Developer resources: http://sourceforge.net/project/python/ |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 376 | .br |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 377 | FTP: ftp://ftp.python.org/pub/python/ |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 378 | .br |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 379 | Module repository: http://www.vex.net/parnassus/ |
Guido van Rossum | 74faed2 | 1996-07-30 19:27:05 +0000 | [diff] [blame] | 380 | .br |
Fred Drake | bd2e3b0 | 2001-07-26 21:25:58 +0000 | [diff] [blame] | 381 | Newsgroups: comp.lang.python, comp.lang.python.announce |
Guido van Rossum | f4a090d | 2000-09-01 20:36:34 +0000 | [diff] [blame] | 382 | .SH LICENSING |
| 383 | Python is distributed under an Open Source license. See the file |
| 384 | "LICENSE" in the Python source distribution for information on terms & |
| 385 | conditions for accessing and otherwise using Python and for a |
| 386 | DISCLAIMER OF ALL WARRANTIES. |