Searched refs:Py_FinalizeEx (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython3/Doc/includes/ |
D | run-func.c | 66 if (Py_FinalizeEx() < 0) { in main()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.2.rst | 37 Conditionally declare :c:func:`Py_FinalizeEx()` (new in 3.6) based on
|
D | 3.6.0a1.rst | 508 New Py_FinalizeEx() API allowing Python to set an exit status of 120 on
|
/external/python/cpython3/Doc/c-api/ |
D | sys.rst | 306 single: Py_FinalizeEx() 309 Exit the current process. This calls :c:func:`Py_FinalizeEx` and then calls the 310 standard C library function ``exit(status)``. If :c:func:`Py_FinalizeEx` 320 single: Py_FinalizeEx() 323 Register a cleanup function to be called by :c:func:`Py_FinalizeEx`. The cleanup
|
D | init.rst | 238 single: Py_FinalizeEx() 249 (without calling :c:func:`Py_FinalizeEx` first). There is no return value; it is a 267 (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns false until 271 .. c:function:: int Py_FinalizeEx() 299 :c:func:`Py_FinalizeEx` more than once. 306 This is a backwards-compatible version of :c:func:`Py_FinalizeEx` that 335 If :c:func:`Py_FinalizeEx` is called, this function will need to be called 1140 single: Py_FinalizeEx() 1150 :c:func:`Py_FinalizeEx` and :c:func:`Py_Initialize`; in that case, the extension's 1158 .. index:: single: Py_FinalizeEx() [all …]
|
D | intro.rst | 658 by calling :c:func:`Py_FinalizeEx`. The function :c:func:`Py_IsInitialized` returns 660 these functions is given in a later chapter. Notice that :c:func:`Py_FinalizeEx`
|
/external/python/cpython3/Misc/ |
D | SpecialBuilds.txt | 68 If this envvar exists, Py_FinalizeEx() arranges to print a list of all 70 before and after Py_FinalizeEx has cleaned up everything it can clean up. The 147 stderr whenever a new arena is allocated, and also by Py_FinalizeEx(). 182 Allocation and deallocation code keeps these counts up to date. Py_FinalizeEx()
|
/external/python/cpython3/Python/ |
D | frozenmain.c | 110 if (Py_FinalizeEx() < 0) { in Py_FrozenMain()
|
D | pylifecycle.c | 1120 Py_FinalizeEx(void) in Py_FinalizeEx() function 1337 Py_FinalizeEx(); in Py_Finalize() 2278 if (Py_FinalizeEx() < 0) { in Py_Exit()
|
/external/python/cpython3/PC/bdist_wininst/ |
D | install.c | 734 DECLPROC(hPython, int, Py_FinalizeEx, (void)); in do_run_installscript() 742 || !PyRun_SimpleString || !Py_FinalizeEx) in do_run_installscript() 789 if (Py_FinalizeEx() < 0) { in do_run_installscript() 853 DECLPROC(hPython, int, Py_FinalizeEx, (void)); in do_run_simple_script() 857 if (!Py_Initialize || !Py_SetProgramName || !Py_FinalizeEx || in do_run_simple_script() 867 if (Py_FinalizeEx() < 0) { in do_run_simple_script()
|
/external/python/cpython3/Include/ |
D | pylifecycle.h | 103 PyAPI_FUNC(int) Py_FinalizeEx(void);
|
/external/python/cpython3/Doc/extending/ |
D | embedding.rst | 70 if (Py_FinalizeEx() < 0) { 81 that prints the date and time. Afterwards, the :c:func:`Py_FinalizeEx` call shuts
|
/external/python/cpython3/PC/ |
D | python3.def | 733 Py_FinalizeEx=python37.Py_FinalizeEx
|
/external/python/cpython3/Modules/ |
D | main.c | 3040 if (Py_FinalizeEx() < 0) { in pymain_main()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1880 * New :c:func:`Py_FinalizeEx` API which indicates if flushing buffered data
|