Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dfileobject.h16 int f_softspace; /* Flag used by 'print' command */ member
/external/python/cpython2/Objects/
Dfileobject.c160 f->f_softspace = 0; in fill_file_fields()
1847 f->f_softspace = 0; in file_write()
1964 f->f_softspace = 0; in file_writelines()
2192 return PyInt_FromLong(f->f_softspace); in get_softspace()
2211 f->f_softspace = new; in set_softspace()
2519 oldflag = ((PyFileObject *)f)->f_softspace; in PyFile_SoftSpace()
2520 ((PyFileObject *)f)->f_softspace = newflag; in PyFile_SoftSpace()
/external/python/cpython2/Modules/
Dbz2module.c95 int f_softspace; /* Flag used by 'print' command */ member
843 self->f_softspace = 0; in BZ2File_write()
965 self->f_softspace = 0; in BZ2File_writelines()
1349 {"softspace", T_INT, OFF(f_softspace), 0,