Home
last modified time | relevance | path

Searched refs:_PySys_SetObjectId (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/
Dsysmodule.h14 PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *);
/external/python/cpython3/Python/
Dpylifecycle.c794 _PySys_SetObjectId(&PyId_stderr, pstderr); in _Py_InitializeCore_impl()
1447 _PySys_SetObjectId(&PyId_stderr, pstderr); in new_interpreter()
1930 _PySys_SetObjectId(&PyId_stdin, std); in init_sys_streams()
1939 _PySys_SetObjectId(&PyId_stdout, std); in init_sys_streams()
1966 if (_PySys_SetObjectId(&PyId_stderr, std) < 0) { in init_sys_streams()
Dpythonrun.c110 _PySys_SetObjectId(&PyId_ps1, v = PyUnicode_FromString(">>> ")); in PyRun_InteractiveLoopFlags()
115 _PySys_SetObjectId(&PyId_ps2, v = PyUnicode_FromString("... ")); in PyRun_InteractiveLoopFlags()
661 if (_PySys_SetObjectId(&PyId_last_type, exception) < 0) { in PyErr_PrintEx()
664 if (_PySys_SetObjectId(&PyId_last_value, v) < 0) { in PyErr_PrintEx()
667 if (_PySys_SetObjectId(&PyId_last_traceback, tb) < 0) { in PyErr_PrintEx()
Dsysmodule.c77 _PySys_SetObjectId(_Py_Identifier *key, PyObject *v) in _PySys_SetObjectId() function
1774 if (_PySys_SetObjectId(&PyId_warnoptions, warnoptions)) { in get_warnoptions()
1859 if (_PySys_SetObjectId(&PyId__xoptions, xoptions)) { in get_xoptions()
2571 if (_PySys_SetObjectId(&PyId_path, v) != 0) in PySys_SetPath()
/external/python/cpython3/Misc/NEWS.d/
D3.6.4rc1.rst256 `_PySys_SetObjectId()`, for example when no memory.
D3.7.0a3.rst245 `_PySys_SetObjectId()`, for example when no memory.