Lines Matching refs:addstr
72 :c:func:`addstr`, :c:func:`mvaddstr`, and :c:func:`mvwaddstr` into a single
73 :meth:`~curses.window.addstr` method. You'll see this covered in more
149 stdscr.addstr(i, 0, '10 divided by {} is {}'.format(v, 10/v))
268 :c:func:`addstr` displays a string at the current cursor location in
271 like :c:func:`addstr`, but allows specifying a window to use instead of
277 :meth:`~curses.window.addstr` accept multiple argument forms. Usually there
302 The :meth:`~curses.window.addstr` method takes a Python string or
368 stdscr.addstr(0, 0, "Current mode: Typing mode",
395 stdscr.addstr("Pretty text", curses.color_pair(1))
418 stdscr.addstr(0,0, "RED ALERT!", curses.color_pair(1))
504 stdscr.addstr(0, 0, "Enter IM message: (hit Ctrl-G to send)")