mirror of
https://github.com/python/cpython.git
synced 2025-12-10 02:50:09 +00:00
initial checkin
This commit is contained in:
parent
3dc44aba71
commit
705d517e3f
9 changed files with 781 additions and 0 deletions
46
Demo/embed/demo.c
Normal file
46
Demo/embed/demo.c
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* Example of embedding Python in another program */
|
||||
|
||||
#include "allobjects.h"
|
||||
|
||||
static char *argv0;
|
||||
|
||||
main(argc, argv)
|
||||
int argc;
|
||||
char **argv;
|
||||
{
|
||||
/* Save a copy of argv0 */
|
||||
argv0 = argv[0];
|
||||
|
||||
/* Initialize the Python interpreter. Required. */
|
||||
initall();
|
||||
|
||||
/* 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
|
||||
touching sys.argv...) */
|
||||
setpythonargv(argc, argv);
|
||||
|
||||
/* Do some application specific code */
|
||||
printf("Hello, brave new world\n\n");
|
||||
|
||||
/* Execute some Python statements (in module __main__) */
|
||||
run_command("import sys\n");
|
||||
run_command("print sys.builtin_module_names\n");
|
||||
run_command("print sys.argv\n");
|
||||
|
||||
/* Note that you can call any public function of the Python
|
||||
interpreter here, e.g. call_object(). */
|
||||
|
||||
/* Some more application specific code */
|
||||
printf("\nGoodbye, cruel world\n");
|
||||
|
||||
/* Exit, cleaning up the interpreter */
|
||||
goaway(0);
|
||||
/*NOTREACHED*/
|
||||
}
|
||||
|
||||
char *
|
||||
getprogramname()
|
||||
{
|
||||
return argv0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue