Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dparsermodule.c1050 pickle_constructor = NULL; variable
1071 result = Py_BuildValue("O(O)", pickle_constructor, tuple); in parser__pickler()
1180 pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st); in PyInit_parser()
1182 Py_XINCREF(pickle_constructor); in PyInit_parser()
1183 if ((func != NULL) && (pickle_constructor != NULL) in PyInit_parser()
1188 pickle_constructor, NULL); in PyInit_parser()
1192 Py_XDECREF(pickle_constructor); in PyInit_parser()
/external/python/cpython2/Modules/
Dparsermodule.c3392 pickle_constructor = NULL; variable
3413 result = Py_BuildValue("O(O)", pickle_constructor, tuple); in parser__pickler()
3518 pickle_constructor = PyObject_GetAttrString(module, "sequence2st"); in initparser()
3520 Py_XINCREF(pickle_constructor); in initparser()
3521 if ((func != NULL) && (pickle_constructor != NULL) in initparser()
3526 pickle_constructor, NULL); in initparser()
3530 Py_XDECREF(pickle_constructor); in initparser()