Home
last modified time | relevance | path

Searched refs:putwin (Results 1 – 7 of 7) sorted by relevance

/external/python/cffi/demo/
D_curses.py552 def putwin(self, filep): member in Window
554 return _check_ERR(lib.putwin(self._win, filep), "putwin")
/external/python/cpython2/Lib/test/
Dtest_curses.py238 self.stdscr.putwin(f)
/external/python/cpython3/Lib/test/
Dtest_curses.py581 win.putwin(f)
/external/python/cpython2/Doc/library/
Dcurses.rst228 Read window related data stored in the file by an earlier :func:`putwin` call.
1079 .. method:: window.putwin(file)
/external/python/cpython3/Doc/library/
Dcurses.rst241 Read window related data stored in the file by an earlier :func:`putwin` call.
1175 .. method:: window.putwin(file)
/external/python/cpython3/Modules/
D_cursesmodule.c2167 res = PyCursesCheckERR(putwin(self->win, fp), "putwin"); in _curses_window_putwin()
/external/python/cpython2/Modules/
D_cursesmodule.c1384 return PyCursesCheckERR(putwin(self->win, PyFile_AsFile(temp)), in PyCursesWindow_PutWin()