Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dsysmodule.h6 PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *);
/third_party/python/Python/
Dpythonrun.c132 _PySys_SetObjectId(&PyId_ps1, v = PyUnicode_FromString(">>> ")); in _PyRun_InteractiveLoopObject()
137 _PySys_SetObjectId(&PyId_ps2, v = PyUnicode_FromString("... ")); in _PyRun_InteractiveLoopObject()
804 if (_PySys_SetObjectId(&PyId_last_type, exception) < 0) { in _PyErr_PrintEx()
807 if (_PySys_SetObjectId(&PyId_last_value, v) < 0) { in _PyErr_PrintEx()
810 if (_PySys_SetObjectId(&PyId_last_traceback, tb) < 0) { in _PyErr_PrintEx()
Dpylifecycle.c2353 _PySys_SetObjectId(&PyId_stdin, std); in init_sys_streams()
2364 _PySys_SetObjectId(&PyId_stdout, std); in init_sys_streams()
2393 if (_PySys_SetObjectId(&PyId_stderr, std) < 0) { in init_sys_streams()
Dsysmodule.c141 _PySys_SetObjectId(_Py_Identifier *key, PyObject *v) in _PySys_SetObjectId() function
/third_party/python/Misc/NEWS.d/
D3.6.4rc1.rst255 `_PySys_SetObjectId()`, for example when no memory.
D3.7.0a3.rst244 `_PySys_SetObjectId()`, for example when no memory.