Home
last modified time | relevance | path

Searched refs:insert_mode (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/test/
Dcurses_tests.py13 def test_textpad(stdscr, insert_mode=False): argument
16 if insert_mode:
27 box = textpad.Textbox(win, insert_mode)
Dtest_curses.py367 box = curses.textpad.Textbox(stdscr, insert_mode=True)
/external/python/cpython3/Lib/test/
Dcurses_tests.py13 def test_textpad(stdscr, insert_mode=False): argument
16 if insert_mode:
27 box = textpad.Textbox(win, insert_mode)
Dtest_curses.py442 box = curses.textpad.Textbox(stdscr, insert_mode=True)
/external/python/cpython2/Lib/curses/
Dtextpad.py43 def __init__(self, win, insert_mode=False): argument
45 self.insert_mode = insert_mode
75 if self.insert_mode:
84 if not self.insert_mode or not curses.ascii.isprint(oldch):
/external/python/cpython3/Lib/curses/
Dtextpad.py43 def __init__(self, win, insert_mode=False): argument
45 self.insert_mode = insert_mode
75 if self.insert_mode:
84 if not self.insert_mode or not curses.ascii.isprint(oldch):
/external/tensorflow/tensorflow/python/debug/cli/
Dcurses_ui.py552 self._command_window, insert_mode=True)
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1916 Insert mode is enabled by supplying a true value for the *insert_mode*
/external/python/cpython3/Doc/whatsnew/
D2.6.rst1920 Insert mode is enabled by supplying a true value for the *insert_mode*