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
b8da8d77
Kaydet (Commit)
b8da8d77
authored
Agu 09, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Tool to pre-created cached .rsrc.df.rsrc files in the Lib directories,
similar to compileall.py.
üst
b6434f2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
cachersrc.py
Mac/scripts/cachersrc.py
+46
-0
No files found.
Mac/scripts/cachersrc.py
0 → 100644
Dosyayı görüntüle @
b8da8d77
# Scan the tree passed as argv[0] for .rsrc files, skipping .rsrc.df.rsrc
# files, and open these. The effect of this is to create the .rsrc.df.rsrc
# cache files if needed.
# These are needed on OSX: the .rsrc files are in reality AppleSingle-encoded
# files. We decode the resources into a datafork-based resource file.
import
macresource
import
os
import
sys
import
getopt
class
NoArgsError
(
Exception
):
pass
def
handler
((
verbose
,
force
),
dirname
,
fnames
):
for
fn
in
fnames
:
if
fn
[
-
5
:]
==
'.rsrc'
and
fn
[
-
13
:]
!=
'.rsrc.df.rsrc'
:
if
force
:
try
:
os
.
unlink
(
os
.
path
.
join
(
dirname
,
fn
+
'.df.rsrc'
))
except
IOError
:
pass
macresource
.
open_pathname
(
os
.
path
.
join
(
dirname
,
fn
),
verbose
=
verbose
)
def
main
():
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'vf'
)
if
not
args
:
raise
NoArgsError
except
(
getopt
.
GetoptError
,
NoArgsError
):
sys
.
stderr
.
write
(
'Usage: cachersrc.py dirname ...
\n
'
)
sys
.
exit
(
1
)
verbose
=
0
force
=
0
for
o
,
v
in
opts
:
if
o
==
'-v'
:
verbose
=
1
if
o
==
'-f'
:
force
=
1
for
dir
in
sys
.
argv
[
1
:]:
os
.
path
.
walk
(
dir
,
handler
,
(
verbose
,
force
))
if
__name__
==
'__main__'
:
main
()
\ No newline at end of file
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