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
29a3355a
Kaydet (Commit)
29a3355a
authored
Eyl 15, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added macostools.touch() calls to inform the finder of our changes.
üst
57d53a90
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
BuildApplet.py
Mac/scripts/BuildApplet.py
+2
-0
FixCreator.py
Mac/scripts/FixCreator.py
+2
-0
fixfiletypes.py
Mac/scripts/fixfiletypes.py
+2
-0
No files found.
Mac/scripts/BuildApplet.py
Dosyayı görüntüle @
29a3355a
...
...
@@ -19,6 +19,7 @@ import macfs
import
MACFS
import
MacOS
from
Res
import
*
import
macostools
# .pyc file (and 'PYC ' resource magic number)
MAGIC
=
imp
.
get_magic
()
...
...
@@ -212,6 +213,7 @@ def process(template, filename, output):
CloseResFile
(
output
)
macostools
.
touched
(
dest_fss
)
if
DEBUG
:
print
"Applet created:"
,
destname
...
...
Mac/scripts/FixCreator.py
Dosyayı görüntüle @
29a3355a
...
...
@@ -5,6 +5,7 @@
import
os
import
macfs
import
sys
import
macostools
OLD
=
'PYTH'
NEW
=
'Pyth'
...
...
@@ -15,6 +16,7 @@ def walktree(name, change):
cur_cr
,
cur_tp
=
fs
.
GetCreatorType
()
if
cur_cr
==
OLD
:
fs
.
SetCreatorType
(
NEW
,
cur_tp
)
macostools
.
touched
(
fs
)
print
'Fixed '
,
name
elif
os
.
path
.
isdir
(
name
):
print
'->'
,
name
...
...
Mac/scripts/fixfiletypes.py
Dosyayı görüntüle @
29a3355a
...
...
@@ -10,6 +10,7 @@
import
os
import
macfs
import
sys
import
macostools
list
=
[
(
'.py'
,
'Pyth'
,
'TEXT'
),
...
...
@@ -33,6 +34,7 @@ def walktree(name, change):
if
curcrtp
<>
(
cr
,
tp
):
if
change
:
fs
.
SetCreatorType
(
cr
,
tp
)
macostools
.
touched
(
fs
)
print
'Fixed '
,
name
else
:
print
'Wrong'
,
curcrtp
,
name
...
...
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