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
8c89a6fd
Kaydet (Commit)
8c89a6fd
authored
Şub 19, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use PyMac_GetArgv (in macgetargv.c) for applet inits
üst
dbfb282d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
17 deletions
+8
-17
macglue.c
Mac/Python/macglue.c
+8
-17
No files found.
Mac/Python/macglue.c
Dosyayı görüntüle @
8c89a6fd
...
...
@@ -748,21 +748,10 @@ PyMac_BuildEventRecord(EventRecord *e)
}
/* What follows is used only by applets. */
static
void
init_mac_world
()
{
MaxApplZone
();
InitGraf
(
&
qd
.
thePort
);
InitFonts
();
InitWindows
();
TEInit
();
InitDialogs
((
long
)
0
);
InitMenus
();
InitCursor
();
}
/* ---------- */
/* Applet support */
/* Run a compiled Python Python script from 'PYC ' resource __main__ */
static
int
run_main_resource
()
{
...
...
@@ -795,14 +784,16 @@ run_main_resource()
return
0
;
}
/* Initialization sequence for applets */
void
PyMac_InitApplet
()
{
static
char
*
argv
[]
=
{
"__main__"
,
NULL
};
int
argc
;
char
**
argv
;
init_mac_world
(
);
argc
=
PyMac_GetArgv
(
&
argv
);
Py_Initialize
();
PySys_SetArgv
(
(
sizeof
argv
/
sizeof
argv
[
0
])
-
1
,
argv
);
PySys_SetArgv
(
argc
,
argv
);
run_main_resource
();
fflush
(
stderr
);
fflush
(
stdout
);
...
...
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