Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f4a090d

Browse files
committed
Clean up a bit. Drop -X option, update date, remove documentation
URLs, add various useful URLs. Update address and email. Drop PSA and copyright. Add license info.
1 parent 2051608 commit f4a090d

1 file changed

Lines changed: 27 additions & 56 deletions

File tree

Misc/python.man

Lines changed: 27 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH PYTHON "1" "20 August, 1999"
1+
.TH PYTHON "1" "5 September, 2000"
22
.SH NAME
33
python \- an interpreted, interactive, object-oriented programming language
44
.SH SYNOPSIS
@@ -24,12 +24,8 @@ python \- an interpreted, interactive, object-oriented programming language
2424
[
2525
.B \-v
2626
]
27-
.br
28-
[
29-
.B \-x
30-
]
3127
[
32-
.B \-X
28+
.B \-x
3329
]
3430
.br
3531
[
@@ -52,8 +48,8 @@ The Python Library Reference documents built-in and standard types,
5248
constants, functions and modules.
5349
Finally, the Python Reference Manual describes the syntax and
5450
semantics of the core language in (perhaps too) much detail.
55-
(Information on locating these documents is included in
56-
.B "SEE ALSO"
51+
(These documents may be located via the
52+
.B "INTERNET RESOURCES"
5753
below; they may be installed on your system as well.)
5854
.PP
5955
Python's basic power can be extended with your own modules written in
@@ -108,11 +104,6 @@ Skip the first line of the source. This is intended for a DOS
108104
specific hack only. Warning: the line numbers in error messages will
109105
be off by one!
110106
.TP
111-
.B \-X
112-
Make the standard exceptions strings instead of classes.
113-
Use for backward compatibility with old code only. This is not
114-
necessary for most uses of string exceptions.
115-
.TP
116107
.BI "\-c " command
117108
Specify the command to execute (see next section).
118109
This terminates the option list (following options are passed as
@@ -144,8 +135,8 @@ which is a list of strings (you must first
144135
.I import sys
145136
to be able to access it).
146137
If no script name is given,
147-
.I sys.argv
148-
is empty; if
138+
.I sys.argv[0]
139+
is an empty string; if
149140
.B \-c
150141
is used,
151142
.I sys.argv[0]
@@ -244,56 +235,36 @@ the \fB\-u\fP option.
244235
.IP PYTHONVERBOSE
245236
If this is set to a non-empty string it is equivalent to specifying
246237
the \fB\-v\fP option.
247-
.SH SEE ALSO
248-
.IP "Python Tutorial"
249-
URL: http://www.python.org/doc/tut/tut.html
250-
.IP "Python Library Reference"
251-
URL: http://www.python.org/doc/lib/lib.html
252-
.IP "Python Reference Manual"
253-
URL: http://www.python.org/doc/ref/ref.html
254-
.IP "Extending and Embedding the Python Interpreter"
255-
URL: http://www.python.org/doc/ext/ext.html
256-
.IP "Python/C API"
257-
URL: http://www.python.org/doc/api/api.html
258-
.PP
259-
Downloadable versions of these documents in many formats are available
260-
at the Python website; see \fB\INTERNET RESOURCES\fP below.
261238
.SH AUTHOR
262239
.nf
263240
Guido van Rossum
264-
CNRI
265-
1895 Preston White Drive
266-
Reston, VA 20191
241+
BeOpen.com
242+
160 Saratoga Avenue
243+
Santa Clara, CA 95051
267244
USA
268245
.PP
269-
E-mail: guido@cnri.reston.va.us, [email protected]
246+
E-mail: guido@beopen.com, [email protected]
270247
.fi
271248
.PP
272249
And a cast of thousands.
273250
.SH INTERNET RESOURCES
274-
Web site: http://www.python.org
251+
Main website: http://www.python.org
275252
.br
276-
FTP site: ftp://ftp.python.org
253+
BeOpen development team: http://pythonlabs.com
254+
.br
255+
Community website: http://starship.python.net
256+
.br
257+
Developer resources:
258+
.br
259+
http://sourceforge.net/project/?group_id=5470
260+
.br
261+
FTP: ftp://ftp.python.org/pub/python
262+
.br
263+
Module repository: http://www.vex.net/parnassus/
277264
.br
278265
Newsgroups: comp.lang.python, comp.lang.python.announce
279-
.PP
280-
There are many mirror sites; a current list is available at
281-
http://www.python.org/mirrors.html.
282-
.PP
283-
The \fI\Python Software Activity\fP provides many mailing lists which
284-
serve various special interests within the Python community;
285-
information on these special interest groups is available at
286-
http://www.python.org/sigs/.
287-
.SH COPYRIGHT
288-
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
289-
The Netherlands.
290-
.IP " "
291-
All Rights Reserved
292-
.PP
293-
Copyright (c) 2000, BeOpen.com.
294-
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
295-
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
296-
All rights reserved.
297-
298-
See the file "Misc/COPYRIGHT" for information on usage and
299-
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
266+
.SH LICENSING
267+
Python is distributed under an Open Source license. See the file
268+
"LICENSE" in the Python source distribution for information on terms &
269+
conditions for accessing and otherwise using Python and for a
270+
DISCLAIMER OF ALL WARRANTIES.

0 commit comments

Comments
 (0)