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
c13b39c7
Kaydet (Commit)
c13b39c7
authored
Eyl 01, 2000
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Deleted. This is obsoleted by Tools/scripts/fixnotice.py.
üst
c07d5fad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
75 deletions
+0
-75
Fixcprt.py
Misc/Fixcprt.py
+0
-75
No files found.
Misc/Fixcprt.py
deleted
100755 → 0
Dosyayı görüntüle @
c07d5fad
#! /usr/bin/env python
import
regex
import
regsub
import
glob
import
sys
import
os
import
stat
import
getopt
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
for
opt
,
arg
in
opts
:
if
opt
==
'-y'
:
agelimit
=
os
.
stat
(
arg
)[
stat
.
ST_MTIME
]
if
not
args
:
args
=
glob
.
glob
(
'*.[ch]'
)
for
file
in
args
:
try
:
age
=
os
.
stat
(
file
)[
stat
.
ST_MTIME
]
except
os
.
error
,
msg
:
print
file
,
': stat failed :'
,
msg
continue
if
age
<=
agelimit
:
print
file
,
': too old, skipped'
continue
try
:
f
=
open
(
file
,
'r'
)
except
IOError
,
msg
:
print
file
,
': open failed :'
,
msg
continue
head
=
f
.
read
(
HEADSIZE
)
if
oldprog
.
search
(
head
)
<
0
:
if
newprog
.
search
(
head
)
<
0
:
print
file
,
': NO COPYRIGHT FOUND'
else
:
print
file
,
': (new copyright already there)'
f
.
close
()
continue
newhead
=
regsub
.
sub
(
oldcprt
,
newcprt
,
head
)
data
=
newhead
+
f
.
read
()
f
.
close
()
try
:
f
=
open
(
file
+
'.new'
,
'w'
)
except
IOError
,
msg
:
print
file
,
': creat failed :'
,
msg
continue
f
.
write
(
data
)
f
.
close
()
try
:
os
.
rename
(
file
,
file
+
'~'
)
except
IOError
,
msg
:
print
file
,
': rename to backup failed :'
,
msg
continue
try
:
os
.
rename
(
file
+
'.new'
,
file
)
except
IOError
,
msg
:
print
file
,
': rename from .new failed :'
,
msg
continue
print
file
,
': copyright changed.'
main
()
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