Home
last modified time | relevance | path

Searched refs:addch (Results 1 – 25 of 26) sorted by relevance

12

/external/python/cpython2/Demo/curses/
Dxmas.py50 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 …]
Drain.py55 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(' '))
Dlife.py75 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, ' ')
Dtclock.py21 stdscr.addch(y, x, col)
Dncurses.py65 win.addch(num)
/external/python/cpython3/Tools/demo/
Dlife.py74 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, ' ')
/external/python/cpython3/Lib/curses/
Dtextpad.py14 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)
/external/python/cpython2/Lib/curses/
Dtextpad.py14 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)
/external/python/cpython3/Lib/test/
Dtest_curses.py89 for meth in [stdscr.addch, stdscr.addstr]:
421 signature = inspect.signature(stdscr.addch)
434 human_readable_signature = stdscr.addch.__doc__.split("\n")[0]
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b3.rst85 Fixed segfault in curses's addch() with ncurses6.
D3.7.0b4.rst316 Add a note about curses.addch and curses.addstr exception behavior when
D3.8.0b4.rst300 Fix the implementation of curses ``addch(str, color_pair)``: pass the color
D3.6.6rc1.rst604 Add a note about curses.addch and curses.addstr exception behavior when
D3.5.3rc1.rst596 Fixed segfault in curses's addch() with ncurses6.
D3.5.0a1.rst3703 Bugfix for curses.window.addch() regression in 3.4.0. In porting to Argument
D3.7.0a1.rst3977 Fixed segfault in curses's addch() with ncurses6.
D3.8.0a1.rst6682 Add a note about curses.addch and curses.addstr exception behavior when
/external/python/cpython3/Doc/howto/
Dcurses.rst227 # These loops fill the pad with letters; addch() is
231 pad.addch(y,x, ord('a') + (x*x+y*y) % 26)
309 The :meth:`~curses.window.addch` methods take a character, which can be
Dclinic.rst648 Another example is ``curses.window.addch()``, which has a group of two
673 after these parameters. As an example, here's how ``curses.window.addch``
679 curses.window.addch
/external/python/cpython2/Lib/test/
Dtest_curses.py90 for meth in [stdscr.addch, stdscr.addstr]:
/external/python/cpython2/Doc/howto/
Dcurses.rst187 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
/external/python/cffi/demo/
D_curses.py275 def addch(self, y, x, ch, attr=None): member in Window
/external/python/cpython2/Doc/library/
Dcurses.rst414 does not change the behavior of ``addch('\n')``, which always does the
652 .. method:: window.addch(ch[, attr])
653 window.addch(y, x, ch[, attr])
/external/python/cpython3/Doc/library/
Dcurses.rst422 does not change the behavior of ``addch('\n')``, which always does the
681 .. method:: window.addch(ch[, attr])
682 window.addch(y, x, ch[, attr])
/external/python/cpython2/Misc/NEWS.d/
D2.7.15rc1.rst1273 Add a note about curses.addch and curses.addstr exception behavior when

12