Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
227a0a1e
Kaydet (Commit)
227a0a1e
authored
Ock 04, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added 1995 to copyright message; added a few people to acks again...
üst
f456b6d6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
12 deletions
+20
-12
ACKS
Misc/ACKS
+3
-1
COPYRIGHT
Misc/COPYRIGHT
+2
-2
Fixcprt.py
Misc/Fixcprt.py
+9
-3
python.man
Misc/python.man
+6
-6
No files found.
Misc/ACKS
Dosyayı görüntüle @
227a0a1e
...
@@ -25,8 +25,9 @@ Jan-Hein B"uhrman
...
@@ -25,8 +25,9 @@ Jan-Hein B"uhrman
Dick Bulterman
Dick Bulterman
Tommy Burnette
Tommy Burnette
Mike Carlton
Mike Carlton
Matthew Conway
David Chaum
David Chaum
Matt Conway
Tom Culliton
John Cugini
John Cugini
Jonathan Dasteel
Jonathan Dasteel
John DeGood
John DeGood
...
@@ -102,6 +103,7 @@ Frank Visser
...
@@ -102,6 +103,7 @@ Frank Visser
Richard Walker
Richard Walker
Barry Warsaw
Barry Warsaw
Steve Waterbury
Steve Waterbury
Bob Watson
Rickard Westman
Rickard Westman
Dik Winter
Dik Winter
tim@prl.philips.nl
tim@prl.philips.nl
Misc/COPYRIGHT
Dosyayı görüntüle @
227a0a1e
Copyright 1991
, 1992, 1993, 1994 by Stichting Mathematisch Centru
m,
Copyright 1991
-1995 by Stichting Mathematisch Centrum, Amsterda
m,
Amsterdam,
The Netherlands.
The Netherlands.
All Rights Reserved
All Rights Reserved
...
...
Misc/Fixcprt.py
Dosyayı görüntüle @
227a0a1e
...
@@ -8,12 +8,18 @@ import os
...
@@ -8,12 +8,18 @@ import os
import
stat
import
stat
import
getopt
import
getopt
oldcprt
=
'Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,
\n
Amsterdam, The Netherlands.'
oldcprt
=
"""
\
newcprt
=
'Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
\n
Amsterdam, The Netherlands.'
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
)
oldprog
=
regex
.
compile
(
oldcprt
)
newprog
=
regex
.
compile
(
newcprt
)
newprog
=
regex
.
compile
(
newcprt
)
HEADSIZE
=
1024
def
main
():
def
main
():
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'y:'
)
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'y:'
)
agelimit
=
0L
agelimit
=
0L
...
@@ -36,7 +42,7 @@ def main():
...
@@ -36,7 +42,7 @@ def main():
except
IOError
,
msg
:
except
IOError
,
msg
:
print
file
,
': open failed :'
,
msg
print
file
,
': open failed :'
,
msg
continue
continue
head
=
f
.
read
(
1024
)
head
=
f
.
read
(
HEADSIZE
)
if
oldprog
.
search
(
head
)
<
0
:
if
oldprog
.
search
(
head
)
<
0
:
if
newprog
.
search
(
head
)
<
0
:
if
newprog
.
search
(
head
)
<
0
:
print
file
,
': NO COPYRIGHT FOUND'
print
file
,
': NO COPYRIGHT FOUND'
...
...
Misc/python.man
Dosyayı görüntüle @
227a0a1e
.TH PYTHON "
3 May 1994
"
.TH PYTHON "
4 January 1995
"
.SH NAME
.SH NAME
python \- an interpreted, interactive, object-oriented programming language
python \- an interpreted, interactive, object-oriented programming language
.SH SYNOPSIS
.SH SYNOPSIS
...
@@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address
...
@@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address
in Internet form to
in Internet form to
.I python-list-request@cwi.nl.
.I python-list-request@cwi.nl.
.SH COPYRIGHT
.SH COPYRIGHT
Copyright 1991
, 1992, 1993, 1994 by Stichting Mathematisch Centru
m,
Copyright 1991
-1995 by Stichting Mathematisch Centrum, Amsterda
m,
Amsterdam,
The Netherlands.
The Netherlands.
.IP " "
.IP " "
All Rights Reserved
All Rights Reserved
.PP
.PP
Permission to use, copy, modify, and distribute this software and its
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
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
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission.
distribution of the software without specific, written prior permission.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment