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
658375b8
Kaydet (Commit)
658375b8
authored
Şub 06, 2003
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Got rid of macfs.
üst
caaad98e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
fixfiletypes.py
Mac/scripts/fixfiletypes.py
+4
-5
No files found.
Mac/scripts/fixfiletypes.py
Dosyayı görüntüle @
658375b8
...
@@ -8,10 +8,10 @@
...
@@ -8,10 +8,10 @@
# Jack Jansen, CWI, 1995.
# Jack Jansen, CWI, 1995.
#
#
import
os
import
os
import
macfs
import
EasyDialogs
import
EasyDialogs
import
sys
import
sys
import
macostools
import
macostools
import
MacOS
list
=
[
list
=
[
(
'.py'
,
'Pyth'
,
'TEXT'
),
(
'.py'
,
'Pyth'
,
'TEXT'
),
...
@@ -30,11 +30,10 @@ def walktree(name, change):
...
@@ -30,11 +30,10 @@ def walktree(name, change):
if
os
.
path
.
isfile
(
name
):
if
os
.
path
.
isfile
(
name
):
for
ext
,
cr
,
tp
in
list
:
for
ext
,
cr
,
tp
in
list
:
if
name
[
-
len
(
ext
):]
==
ext
:
if
name
[
-
len
(
ext
):]
==
ext
:
fs
=
macfs
.
FSSpec
(
name
)
curcrtp
=
MacOS
.
GetCreatorAndType
(
name
)
curcrtp
=
fs
.
GetCreatorType
()
if
curcrtp
<>
(
cr
,
tp
):
if
curcrtp
<>
(
cr
,
tp
):
if
change
:
if
change
:
fs
.
SetCreatorType
(
cr
,
tp
)
MacOS
.
SetCreatorAndType
(
name
,
cr
,
tp
)
macostools
.
touched
(
fs
)
macostools
.
touched
(
fs
)
print
'Fixed '
,
name
print
'Fixed '
,
name
else
:
else
:
...
@@ -52,6 +51,6 @@ def run(change):
...
@@ -52,6 +51,6 @@ def run(change):
walktree
(
pathname
,
change
)
walktree
(
pathname
,
change
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
run
(
1
)
run
(
0
)
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