Home
last modified time | relevance | path

Searched refs:PySys_SetArgvEx (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Demo/embed/
Ddemo.c31 PySys_SetArgvEx(argc, argv, 0); in main()
/external/python/cpython2/Include/
Dsysmodule.h14 PyAPI_FUNC(void) PySys_SetArgvEx(int, char **, int);
/external/python/cpython3/Include/
Dsysmodule.h18 PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
/external/python/cpython2/Python/
Dsysmodule.c1619 PySys_SetArgvEx(int argc, char **argv, int updatepath) in PySys_SetArgvEx() function
1725 PySys_SetArgvEx(argc, argv, 1); in PySys_SetArgv()
/external/python/cpython2/Misc/NEWS.d/
D2.7rc1.rst99 A new C API function, :cfunc:`PySys_SetArgvEx`, allows embedders of the
/external/python/cpython3/PC/
Dpython3.def560 PySys_SetArgvEx=python37.PySys_SetArgvEx
/external/python/cpython3/Doc/data/
Drefcounts.dat2141 PySys_SetArgvEx:void:::
2142 PySys_SetArgvEx:int:argc::
2143 PySys_SetArgvEx:wchar_t**:argv::
2144 PySys_SetArgvEx:int:updatepath::
/external/python/cpython3/Python/
Dsysmodule.c2603 PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath) in PySys_SetArgvEx() function
2637 PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0); in PySys_SetArgv()
/external/python/cpython2/Doc/c-api/
Dinit.rst29 single: PySys_SetArgvEx()
39 :c:func:`PySys_SetArgvEx` for that. This is a no-op when called for a second time
269 .. c:function:: void PySys_SetArgvEx(int argc, char **argv, int updatepath)
316 This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set to ``1``.
Dintro.rst530 .. index:: single: PySys_SetArgvEx()
534 be set explicitly with a call to ``PySys_SetArgvEx(argc, argv, updatepath)``
/external/python/cpython3/Doc/c-api/
Dinit.rst237 single: PySys_SetArgvEx()
248 :c:func:`PySys_SetArgvEx` for that. This is a no-op when called for a second time
551 .. c:function:: void PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath)
601 This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set
Dintro.rst613 .. index:: single: PySys_SetArgvEx()
617 be set explicitly with a call to ``PySys_SetArgvEx(argc, argv, updatepath)``
/external/python/cpython3/Doc/whatsnew/
D2.7.rst2157 * New function: :c:func:`PySys_SetArgvEx` sets the value of
2172 whether the application should be using :c:func:`PySys_SetArgvEx`
2547 * The :c:func:`PySys_SetArgvEx` function was added, letting
2551 application should be using :c:func:`PySys_SetArgvEx` with
D3.2.rst2562 * A new C API function :c:func:`PySys_SetArgvEx` allows an embedded interpreter
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2133 * New function: :c:func:`PySys_SetArgvEx` sets the value of
2148 whether the application should be using :c:func:`PySys_SetArgvEx`
2517 * The :c:func:`PySys_SetArgvEx` function was added, letting
2521 application should be using :c:func:`PySys_SetArgvEx` with
/external/python/cpython3/Misc/
DHISTORY13070 - Issue #5753: A new C API function, `PySys_SetArgvEx`, allows embedders of the