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
f1148f0b
Kaydet (Commit)
f1148f0b
authored
Agu 09, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch by Russel Owen: if we have command line arguments zap pyc files
in the directories given.
üst
dc391a67
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
12 deletions
+15
-12
zappycfiles.py
Mac/scripts/zappycfiles.py
+15
-12
No files found.
Mac/scripts/zappycfiles.py
Dosyayı görüntüle @
f1148f0b
# Zap .pyc files
#!/usr/local/bin/python
"""Recursively zap all .pyc files"""
import
os
import
sys
# set doit true to actually delete files
# set doit false to just print what would be deleted
doit
=
1
def
main
():
if
os
.
name
==
'mac'
:
i
mport
macfs
fss
,
ok
=
macfs
.
GetDirectory
(
'Directory to zap pyc files in'
)
if
not
ok
:
sys
.
exit
(
0
)
dir
=
fss
.
as_pathname
(
)
zappyc
(
dir
)
else
:
if
not
sys
.
argv
[
1
:]
:
if
not
sys
.
argv
[
1
:]
:
i
f
os
.
name
==
'mac'
:
import
macfs
fss
,
ok
=
macfs
.
GetDirectory
(
'Directory to zap pyc files in'
)
if
not
ok
:
sys
.
exit
(
0
)
dir
=
fss
.
as_pathname
(
)
zappyc
(
dir
)
else
:
print
'Usage: zappyc dir ...'
sys
.
exit
(
1
)
for
dir
in
sys
.
argv
[
1
:]:
zappyc
(
dir
)
for
dir
in
sys
.
argv
[
1
:]:
zappyc
(
dir
)
def
zappyc
(
dir
):
os
.
path
.
walk
(
dir
,
walker
,
None
)
...
...
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