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
d68a4bd5
Kaydet (Commit)
d68a4bd5
authored
Nis 09, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use re instead of regex.
Don't rewrite the file in place. (Reported by Andy Dustman.)
üst
2e1094e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
fixps.py
Tools/scripts/fixps.py
+11
-10
No files found.
Tools/scripts/fixps.py
Dosyayı görüntüle @
d68a4bd5
#!
/usr/bin/env python
#!/usr/bin/env python
# Fix Python script(s) to reference the interpreter via /usr/bin/env python.
# Warning: this overwrites the file without making a backup.
import
sys
import
regex
import
regsub
import
re
def
main
():
for
file
in
sys
.
argv
[
1
:]:
try
:
f
=
open
(
file
,
'r
+
'
)
except
IOError
:
print
file
,
': can
\'
t open
for update'
f
=
open
(
file
,
'r'
)
except
IOError
,
msg
:
print
file
,
': can
\'
t open
:'
,
msg
continue
line
=
f
.
readline
()
if
regex
.
match
(
'^#! */usr/local/bin/python'
,
line
)
<
0
:
if
not
re
.
match
(
'^#! */usr/local/bin/python'
,
line
)
:
print
file
,
': not a /usr/local/bin/python script'
f
.
close
()
continue
rest
=
f
.
read
()
line
=
regsub
.
sub
(
'/usr/local/bin/python'
,
'/usr/bin/env python'
,
line
)
f
.
close
()
line
=
re
.
sub
(
'/usr/local/bin/python'
,
'/usr/bin/env python'
,
line
)
print
file
,
':'
,
`line`
f
.
seek
(
0
)
f
=
open
(
file
,
"w"
)
f
.
write
(
line
)
f
.
write
(
rest
)
f
.
close
()
...
...
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