Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dfileobject.c2344 static PyObject *not_yet_string; in file_new() local
2348 if (not_yet_string == NULL) { in file_new()
2349 not_yet_string = PyString_InternFromString("<uninitialized file>"); in file_new()
2350 if (not_yet_string == NULL) in file_new()
2358 Py_INCREF(not_yet_string); in file_new()
2359 ((PyFileObject *)self)->f_name = not_yet_string; in file_new()
2360 Py_INCREF(not_yet_string); in file_new()
2361 ((PyFileObject *)self)->f_mode = not_yet_string; in file_new()