Searched refs:Py_Initialize (Results 1 – 24 of 24) sorted by relevance
/external/python/cpython2/Demo/embed/ |
D | importexc.c | 7 Py_Initialize(); in main()
|
D | loop.c | 28 Py_Initialize(); in main()
|
D | demo.c | 13 Py_Initialize(); in main()
|
/external/python/cpython2/PC/bdist_wininst/ |
D | install.c | 309 DECLPROC(hPython, void, Py_Initialize, (void)); in compile_filelist() 322 if (!Py_Initialize || !Py_SetProgramName || !Py_Finalize) in compile_filelist() 330 Py_Initialize(); in compile_filelist() 700 DECLPROC(hPython, void, Py_Initialize, (void)); in do_run_installscript() 710 if (!Py_Initialize || !PySys_SetArgv in do_run_installscript() 732 Py_Initialize(); in do_run_installscript() 809 DECLPROC(hPython, void, Py_Initialize, (void)); in do_run_simple_script() 815 if (!Py_Initialize || !Py_SetProgramName || !Py_Finalize || in do_run_simple_script() 820 Py_Initialize(); in do_run_simple_script() 1286 void (__cdecl * Py_Initialize)(void); in get_sys_prefix() [all …]
|
/external/python/cpython2/Python/ |
D | frozenmain.c | 40 Py_Initialize(); in Py_FrozenMain()
|
D | pythonrun.c | 379 Py_Initialize(void) in Py_Initialize() function
|
/external/python/cpython2/Doc/extending/ |
D | embedding.rst | 28 the very least, you have to call the function :c:func:`Py_Initialize`. There are 65 Py_Initialize(); 73 :c:func:`Py_Initialize` to inform the interpreter about paths to Python run-time 75 :c:func:`Py_Initialize`, followed by the execution of a hard-coded Python script 166 Py_Initialize(); 229 following two statements directly after :c:func:`Py_Initialize`::
|
D | extending.rst | 367 to :c:func:`Py_Initialize`:: 376 Py_Initialize();
|
/external/python/cpython2/Doc/includes/ |
D | run-func.c | 15 Py_Initialize(); in main()
|
/external/python/cpython2/Mac/Tools/ |
D | pythonw.c | 62 if (dladdr(Py_Initialize, &info) == 0) { in get_python_path()
|
/external/python/cpython2/Doc/c-api/ |
D | init.rst | 15 .. c:function:: void Py_Initialize() 46 This function works like :c:func:`Py_Initialize` if *initsigs* is ``1``. If 57 :c:func:`Py_Initialize` is called again. 62 Undo all initializations made by :c:func:`Py_Initialize` and subsequent use of 65 the last call to :c:func:`Py_Initialize`. Ideally, this frees all memory 67 time (without calling :c:func:`Py_Initialize` again first). There is no return 86 than once; this can happen if an application calls :c:func:`Py_Initialize` and 97 single: Py_Initialize() 101 This function should be called before :c:func:`Py_Initialize` is called for 466 interpreter (created automatically by :c:func:`Py_Initialize`). Python [all …]
|
D | intro.rst | 517 single: Py_Initialize() 525 The basic initialization function is :c:func:`Py_Initialize`. This initializes 532 :c:func:`Py_Initialize` does not set the "script argument list" (``sys.argv``). 535 after the call to :c:func:`Py_Initialize`. 538 slightly different), :c:func:`Py_Initialize` calculates the module search path 562 ``Py_SetProgramName(file)`` *before* calling :c:func:`Py_Initialize`. Note that 573 :c:func:`Py_Initialize`) or the application is simply done with its use of
|
D | import.rst | 251 :c:func:`Py_Initialize`. 276 internal table. This should be called before :c:func:`Py_Initialize`.
|
/external/python/cpython2/Include/ |
D | pythonrun.h | 28 PyAPI_FUNC(void) Py_Initialize(void);
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.c | 224 Py_Initialize(); /* Initialize the interpreter */ in init_python()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 436 Py_Initialize
|
/external/python/cpython2/Modules/ |
D | main.c | 546 Py_Initialize(); in Py_Main()
|
/external/python/cpython2/Modules/_ctypes/ |
D | callbacks.c | 508 Py_Initialize(); in LoadPython()
|
/external/libnl/m4/ |
D | ax_python_devel.m4 | 298 [[Py_Initialize();]])
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1078 "Py_Initialize"
|
/external/python/cpython2/Doc/faq/ |
D | windows.rst | 244 Py_Initialize(); // Initialize Python.
|
D | extending.rst | 345 Py_Initialize ();
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1795 Py_Initialize:void:::
|
/external/python/cpython2/Misc/ |
D | HISTORY | 12831 - Changed the checks made in Py_Initialize() and Py_Finalize(). It is 12833 Py_Initialize() initializes, the first call to Py_Finalize() 13925 repeatedly by calling Py_Finalize() followed by Py_Initialize(). A 13926 change of functionality in Py_Initialize() means that it is now a 13934 repeated calls to Py_Finalize() and Py_Initialize() do not create 14145 - Py_Initialize() is no longer called when the DLL is loaded. You
|