Home | History | Annotate | Download | only in _io

Lines Matching defs:closefd

52     unsigned int closefd : 1;
107 if (!self->closefd) {
130 self->closefd = 1;
180 static char *kwlist[] = {"file", "mode", "closefd", NULL};
192 int closefd = 1;
197 if (self->closefd) {
207 kwlist, &nameobj, &mode, &closefd))
333 self->closefd = closefd;
336 self->closefd = 1;
337 if (!closefd) {
339 "Cannot use closefd=False with file name");
1073 return PyBool_FromLong((long)(self->closefd));
1084 {"closefd", (getter)get_closefd, NULL,