Searched refs:insert_mode (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | curses_tests.py | 13 def test_textpad(stdscr, insert_mode=False): argument 16 if insert_mode: 27 box = textpad.Textbox(win, insert_mode)
|
D | test_curses.py | 367 box = curses.textpad.Textbox(stdscr, insert_mode=True)
|
/external/python/cpython3/Lib/test/ |
D | curses_tests.py | 13 def test_textpad(stdscr, insert_mode=False): argument 16 if insert_mode: 27 box = textpad.Textbox(win, insert_mode)
|
D | test_curses.py | 442 box = curses.textpad.Textbox(stdscr, insert_mode=True)
|
/external/python/cpython2/Lib/curses/ |
D | textpad.py | 43 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/ |
D | textpad.py | 43 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/ |
D | curses_ui.py | 552 self._command_window, insert_mode=True)
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 1916 Insert mode is enabled by supplying a true value for the *insert_mode*
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 1920 Insert mode is enabled by supplying a true value for the *insert_mode*
|