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
81e84c95
Kaydet (Commit)
81e84c95
authored
Ara 25, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Just for fun, add a static module, "xyzzy" -- show that calling its
initxyzzy() works.
üst
643f8f62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
demo.c
Demo/embed/demo.c
+30
-0
No files found.
Demo/embed/demo.c
Dosyayı görüntüle @
81e84c95
...
...
@@ -4,6 +4,8 @@
static
char
*
argv0
;
void
initxyzzy
();
/* Forward */
main
(
argc
,
argv
)
int
argc
;
char
**
argv
;
...
...
@@ -14,6 +16,9 @@ main(argc, argv)
/* Initialize the Python interpreter. Required. */
Py_Initialize
();
/* Add a static module */
initxyzzy
();
/* Define sys.argv. It is up to the application if you
want this; you can also let it undefined (since the Python
code is generally not a main program it has no business
...
...
@@ -26,6 +31,7 @@ main(argc, argv)
/* Execute some Python statements (in module __main__) */
PyRun_SimpleString
(
"import sys
\n
"
);
PyRun_SimpleString
(
"print sys.builtin_module_names
\n
"
);
PyRun_SimpleString
(
"print sys.modules.keys()
\n
"
);
PyRun_SimpleString
(
"print sys.argv
\n
"
);
/* Note that you can call any public function of the Python
...
...
@@ -45,3 +51,27 @@ getprogramname()
{
return
argv0
;
}
/* A static module */
static
PyObject
*
xyzzy_foo
(
self
,
args
)
PyObject
*
self
;
/* Not used */
PyObject
*
args
;
{
if
(
!
PyArg_ParseTuple
(
args
,
""
))
return
NULL
;
return
PyInt_FromLong
(
42L
);
}
static
PyMethodDef
xyzzy_methods
[]
=
{
{
"foo"
,
xyzzy_foo
,
1
},
{
NULL
,
NULL
}
/* sentinel */
};
void
initxyzzy
()
{
PyImport_AddModule
(
"xyzzy"
);
Py_InitModule
(
"xyzzy"
,
xyzzy_methods
);
}
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