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
f3f4af55
Kaydet (Commit)
f3f4af55
authored
Şub 05, 2003
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Got rid of macfs and made a bit more OSX-friendly.
üst
19e02fc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
findgremlins.py
Mac/scripts/findgremlins.py
+10
-7
No files found.
Mac/scripts/findgremlins.py
Dosyayı görüntüle @
f3f4af55
...
...
@@ -5,7 +5,7 @@ the filename and a bit of context.
By Just, with a little glue by Jack"""
import
EasyDialogs
import
macfs
import
MacOS
import
re
import
os
import
string
...
...
@@ -20,8 +20,8 @@ def walk(top, recurse=1):
path
=
os
.
path
.
join
(
top
,
name
)
walk
(
path
)
else
:
cr
,
tp
=
macfs
.
FSSpec
(
top
)
.
GetCreatorType
(
)
if
tp
==
'TEXT'
and
top
[
-
4
:]
<>
".hqx"
:
cr
,
tp
=
MacOS
.
GetCreatorAndType
(
top
)
if
tp
in
(
'TEXT'
,
'
\0\0\0\0
'
)
and
top
[
-
4
:]
<>
".hqx"
:
data
=
open
(
top
)
.
read
()
badcount
=
0
for
ch
in
data
[:
256
]:
...
...
@@ -44,11 +44,14 @@ def walk(top, recurse=1):
pos
=
j
def
main
():
pathname
=
EasyDialogs
.
AskFolder
()
if
pathname
:
walk
(
pathname
)
if
sys
.
argv
[
1
:]:
for
pathname
in
sys
.
argv
[
1
:]:
walk
(
pathname
)
else
:
pathname
=
EasyDialogs
.
AskFolder
()
if
pathname
:
walk
(
pathname
)
if
__name__
==
'__main__'
:
main
()
sys
.
exit
(
1
)
# So we see the output
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