Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_pickle.c3596 PyObject *pid_str; in save_pers() local
3598 pid_str = PyObject_Str(pid); in save_pers()
3599 if (pid_str == NULL) in save_pers()
3604 if (!PyUnicode_IS_ASCII(pid_str)) { in save_pers()
3608 Py_DECREF(pid_str); in save_pers()
3613 _Pickler_Write(self, PyUnicode_DATA(pid_str), in save_pers()
3614 PyUnicode_GET_LENGTH(pid_str)) < 0 || in save_pers()
3616 Py_DECREF(pid_str); in save_pers()
3619 Py_DECREF(pid_str); in save_pers()