Lines Matching defs:file
14 * a copy of this source file to use, copy, modify, merge, or publish it
18 * in all copies or in any new file that contains a substantial portion of
19 * this file.
2151 file: object
2154 Write all data associated with the window into the provided file object.
2160 _curses_window_putwin(PyCursesWindowObject *self, PyObject *file)
2164 then reading back, then writing to the argument file. */
2185 res = _PyObject_CallMethodId(file, &PyId_write, "y#", buf, n);
3037 file: object
3040 Read window related data stored in the file by an earlier putwin() call.
3047 _curses_getwin(PyObject *module, PyObject *file)
3066 data = _PyObject_CallMethodIdNoArgs(file, &PyId_read);
3368 If not supplied, the file descriptor for sys.stdout will be used.
4374 Specify that the file descriptor fd be used for typeahead checking.