]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added 1995 to copyright message; added a few people to acks again...
authorGuido van Rossum <guido@python.org>
Wed, 4 Jan 1995 19:21:21 +0000 (19:21 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 4 Jan 1995 19:21:21 +0000 (19:21 +0000)
Misc/ACKS
Misc/COPYRIGHT
Misc/Fixcprt.py
Misc/python.man

index 40f2e73cb0e423bd0b2e9fb051fe31ebebef00e5..081cc9d9c5560367ea3930301d1dbb25981dd714 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -25,8 +25,9 @@ Jan-Hein B"uhrman
 Dick Bulterman
 Tommy Burnette
 Mike Carlton
-Matthew Conway
 David Chaum
+Matt Conway
+Tom Culliton
 John Cugini
 Jonathan Dasteel
 John DeGood
@@ -102,6 +103,7 @@ Frank Visser
 Richard Walker
 Barry Warsaw
 Steve Waterbury
+Bob Watson
 Rickard Westman
 Dik Winter
 tim@prl.philips.nl
index 56a1b934b659daee98d02b0ad4dbe9e7304aaa83..4d6bc3063c5b0993216280075817d326f729dc45 100644 (file)
@@ -1,5 +1,5 @@
-Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
-Amsterdam, The Netherlands.
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands.
 
                         All Rights Reserved
 
index 7b447fbfb7dfd0d41ac21ec30effde946709c705..fa28aaa087ae2d9ed2f1ecdd43bfde69d33df5af 100755 (executable)
@@ -8,12 +8,18 @@ import os
 import stat
 import getopt
 
-oldcprt = 'Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.'
-newcprt = 'Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.'
+oldcprt = """\
+Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
+Amsterdam, The Netherlands."""
+newcprt = """\
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands."""
 
 oldprog = regex.compile(oldcprt)
 newprog = regex.compile(newcprt)
 
+HEADSIZE = 1024
+
 def main():
        opts, args = getopt.getopt(sys.argv[1:], 'y:')
        agelimit = 0L
@@ -36,7 +42,7 @@ def main():
                except IOError, msg:
                        print file, ': open failed :', msg
                        continue
-               head = f.read(1024)
+               head = f.read(HEADSIZE)
                if oldprog.search(head) < 0:
                        if newprog.search(head) < 0:
                                print file, ': NO COPYRIGHT FOUND'
index 483bea1ce9079c774854cdb1f0a5816765a79250..4e7d46a767f5a9abae70fcb65b31c671d8aab822 100644 (file)
@@ -1,4 +1,4 @@
-.TH PYTHON "3 May 1994"
+.TH PYTHON "4 January 1995"
 .SH NAME
 python \- an interpreted, interactive, object-oriented programming language
 .SH SYNOPSIS
@@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address
 in Internet form to
 .I python-list-request@cwi.nl.
 .SH COPYRIGHT
-Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
-Amsterdam, The Netherlands.
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands.
 .IP " "
 All Rights Reserved
 .PP
-Permission to use, copy, modify, and distribute this software and its 
-documentation for any purpose and without fee is hereby granted, 
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
 provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in 
+both that copyright notice and this permission notice appear in
 supporting documentation, and that the names of Stichting Mathematisch
 Centrum or CWI not be used in advertising or publicity pertaining to
 distribution of the software without specific, written prior permission.