Lines Matching defs:closefd
148 unsigned int closefd : 1;
171 if (self->closefd) {
199 if (!self->closefd) {
226 self->closefd = 0;
238 closefd: bool(accept={int}) = True
250 const char *mode, int closefd,
265 if (self->closefd) {
335 self->closefd = 0;
339 self->closefd = 1;
340 if (!closefd) {
342 "Cannot use closefd=False with file name");
1050 return PyUnicode_FromFormat("<_io._WindowsConsoleIO mode='rb' closefd=%s>",
1051 self->closefd ? "True" : "False");
1053 return PyUnicode_FromFormat("<_io._WindowsConsoleIO mode='wb' closefd=%s>",
1054 self->closefd ? "True" : "False");
1102 return PyBool_FromLong((long)(self->closefd));
1113 {"closefd", (getter)get_closefd, NULL,