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
b9e5e141
Kaydet (Commit)
b9e5e141
authored
Eyl 20, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use auto-start functionality of aetools.TalkTo and aetools.Error for
server-generated errors.
üst
977fbf27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
14 deletions
+4
-14
binhextree.py
Mac/scripts/binhextree.py
+1
-3
fullbuild.py
Mac/scripts/fullbuild.py
+3
-11
No files found.
Mac/scripts/binhextree.py
Dosyayı görüntüle @
b9e5e141
...
@@ -70,10 +70,8 @@ project_files = {}
...
@@ -70,10 +70,8 @@ project_files = {}
def
hexbincwprojects
(
creator
):
def
hexbincwprojects
(
creator
):
"""Compact and hexbin all files remembered with a given creator"""
"""Compact and hexbin all files remembered with a given creator"""
print
'Please start project mgr with signature'
,
creator
,
'-'
sys
.
stdin
.
readline
()
try
:
try
:
mgr
=
MwShell
(
creator
)
mgr
=
MwShell
(
creator
,
start
=
1
)
except
'foo'
:
except
'foo'
:
print
'Not handled:'
,
creator
print
'Not handled:'
,
creator
return
return
...
...
Mac/scripts/fullbuild.py
Dosyayı görüntüle @
b9e5e141
...
@@ -32,15 +32,7 @@ RUNNING=[]
...
@@ -32,15 +32,7 @@ RUNNING=[]
def
buildmwproject
(
top
,
creator
,
projects
):
def
buildmwproject
(
top
,
creator
,
projects
):
"""Build projects with an MW compiler"""
"""Build projects with an MW compiler"""
if
not
creator
in
RUNNING
:
mgr
=
MwShell
(
creator
,
start
=
1
)
print
'Please start project mgr with signature'
,
creator
,
'-'
sys
.
stdin
.
readline
()
RUNNING
.
append
(
creator
)
try
:
mgr
=
MwShell
(
creator
)
except
'foo'
:
print
'Not handled:'
,
creator
return
mgr
.
send_timeout
=
AppleEvents
.
kNoTimeOut
mgr
.
send_timeout
=
AppleEvents
.
kNoTimeOut
for
file
in
projects
:
for
file
in
projects
:
...
@@ -50,8 +42,8 @@ def buildmwproject(top, creator, projects):
...
@@ -50,8 +42,8 @@ def buildmwproject(top, creator, projects):
mgr
.
open
(
fss
)
mgr
.
open
(
fss
)
try
:
try
:
mgr
.
Make_Project
()
mgr
.
Make_Project
()
except
MacOS
.
Error
,
arg
:
except
aetools
.
Error
,
arg
:
print
'** Failed
. Possible error
:'
,
arg
print
'** Failed:'
,
arg
mgr
.
Close_Project
()
mgr
.
Close_Project
()
## mgr.quit()
## mgr.quit()
...
...
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