Searched refs:addch (Results 1 – 25 of 26) sorted by relevance
12
50 stdscr.addch(y, 7, ord('|'))53 stdscr.addch(19, x, ord('_'))56 stdscr.addch(22, x, ord('_'))61 stdscr.addch(4, 1, ord('S'))62 stdscr.addch(6, 1, ord('E'))63 stdscr.addch(8, 1, ord('A'))64 stdscr.addch(10, 1, ord('S'))65 stdscr.addch(12, 1, ord('O'))66 stdscr.addch(14, 1, ord('N'))67 stdscr.addch(16, 1, ord("'"))[all …]
55 stdscr.addch(y, x, ord('.'))57 stdscr.addch(ypos[j], xpos[j], ord('o'))60 stdscr.addch(ypos[j], xpos[j], ord('O'))63 stdscr.addch( ypos[j] - 1, xpos[j], ord('-'))65 stdscr.addch( ypos[j] + 1, xpos[j], ord('-'))68 stdscr.addch( ypos[j] - 2, xpos[j], ord('-'))72 stdscr.addch( ypos[j] + 2, xpos[j], ord('-'))75 stdscr.addch( ypos[j] - 2, xpos[j], ord(' '))79 stdscr.addch( ypos[j] + 2, xpos[j], ord(' '))
75 self.scr.addch(y+1, x+1, ' ')78 self.scr.addch(y+1, x+1, self.char)93 self.scr.addch(j+1, i+1, self.char)95 self.scr.addch(j+1, i+1, ' ')114 self.scr.addch(j+1, i+1, self.char)119 self.scr.addch(j+1, i+1, ' ')
21 stdscr.addch(y, x, col)
65 win.addch(num)
74 self.scr.addch(y + 1, x + 1, ' ')80 self.scr.addch(y + 1, x + 1, self.char)96 self.scr.addch(j + 1, i + 1, self.char)98 self.scr.addch(j + 1, i + 1, ' ')121 self.scr.addch(j + 1, i + 1, self.char)130 self.scr.addch(j + 1, i + 1, ' ')
14 win.addch(uly, ulx, curses.ACS_ULCORNER)15 win.addch(uly, lrx, curses.ACS_URCORNER)16 win.addch(lry, lrx, curses.ACS_LRCORNER)17 win.addch(lry, ulx, curses.ACS_LLCORNER)81 self.win.addch(ch)
89 for meth in [stdscr.addch, stdscr.addstr]:421 signature = inspect.signature(stdscr.addch)434 human_readable_signature = stdscr.addch.__doc__.split("\n")[0]
85 Fixed segfault in curses's addch() with ncurses6.
316 Add a note about curses.addch and curses.addstr exception behavior when
300 Fix the implementation of curses ``addch(str, color_pair)``: pass the color
604 Add a note about curses.addch and curses.addstr exception behavior when
596 Fixed segfault in curses's addch() with ncurses6.
3703 Bugfix for curses.window.addch() regression in 3.4.0. In porting to Argument
3977 Fixed segfault in curses's addch() with ncurses6.
6682 Add a note about curses.addch and curses.addstr exception behavior when
227 # These loops fill the pad with letters; addch() is231 pad.addch(y,x, ord('a') + (x*x+y*y) % 26)309 The :meth:`~curses.window.addch` methods take a character, which can be
648 Another example is ``curses.window.addch()``, which has a group of two673 after these parameters. As an example, here's how ``curses.window.addch``679 curses.window.addch
90 for meth in [stdscr.addch, stdscr.addstr]:
187 pad.addch(y,x, ord('a') + (x*x+y*y) % 26)245 while the :func:`addch` functions take a character, which can be either a Python
275 def addch(self, y, x, ch, attr=None): member in Window
414 does not change the behavior of ``addch('\n')``, which always does the652 .. method:: window.addch(ch[, attr])653 window.addch(y, x, ch[, attr])
422 does not change the behavior of ``addch('\n')``, which always does the681 .. method:: window.addch(ch[, attr])682 window.addch(y, x, ch[, attr])
1273 Add a note about curses.addch and curses.addstr exception behavior when