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
2af4ce8f
Kaydet (Commit)
2af4ce8f
authored
Ara 09, 2003
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Made this module compatible with Python2.3, and added a temporary setup
script that allows it to be built for that Python.
üst
1dde95df
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
0 deletions
+21
-0
_Launchmodule.c
Mac/Modules/launch/_Launchmodule.c
+4
-0
launchsupport.py
Mac/Modules/launch/launchsupport.py
+4
-0
setup.py
Mac/Modules/launch/setup.py
+13
-0
No files found.
Mac/Modules/launch/_Launchmodule.c
Dosyayı görüntüle @
2af4ce8f
...
...
@@ -15,6 +15,10 @@
}} while(0)
#if PY_VERSION_HEX < 0x02040000
PyObject
*
PyMac_GetOSErrException
(
void
);
#endif
#include <ApplicationServices/ApplicationServices.h>
/*
...
...
Mac/Modules/launch/launchsupport.py
Dosyayı görüntüle @
2af4ce8f
...
...
@@ -29,6 +29,10 @@ OptCFStringRef = OpaqueByValueType("CFStringRef", "OptCFStringRefObj")
LSItemInfoRecord
=
OpaqueType
(
"LSItemInfoRecord"
,
"LSItemInfoRecord"
)
includestuff
=
includestuff
+
"""
#if PY_VERSION_HEX < 0x02040000
PyObject *PyMac_GetOSErrException(void);
#endif
#include <ApplicationServices/ApplicationServices.h>
/*
...
...
Mac/Modules/launch/setup.py
0 → 100644
Dosyayı görüntüle @
2af4ce8f
# This is a temporary setup script to allow distribution of
# MacPython 2.4 modules for MacPython 2.3.
from
distutils.core
import
Extension
,
setup
setup
(
name
=
"LaunchServices"
,
version
=
"0.1"
,
ext_modules
=
[
Extension
(
'_Launch'
,
[
'_Launchmodule.c'
],
extra_link_args
=
[
'-framework'
,
'ApplicationServices'
])
],
py_modules
=
[
'LaunchServices.Launch'
,
'LaunchServices.LaunchServices'
],
package_dir
=
{
'LaunchServices'
:
'../../../Lib/plat-mac/Carbon'
}
)
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