Home | History | Annotate | Download | only in _io

Lines Matching defs:closefd

57     unsigned int closefd : 1;

109 if (!self->closefd) {
134 self->closefd = 1;
191 static char *kwlist[] = {"file", "mode", "closefd", NULL};
203 int closefd = 1;
213 kwlist, &nameobj, &mode, &closefd))
331 self->closefd = closefd;
334 self->closefd = 1;
335 if (!closefd) {
337 "Cannot use closefd=False with file name");
372 if (closefd) {
1037 return PyBool_FromLong((long)(self->closefd));
1048 {"closefd", (getter)get_closefd, NULL,