Lines Matching defs:line

900 "Display a horizontal line.\n"
982 "the rightmost characters on the line being lost.");
1101 "Insert a character string (as many characters as will fit on the line)\n"
1103 "the cursor are shifted right, with the rightmost characters on the line\n"
1176 "Insert a character string (as many characters as will fit on the line)\n"
1179 "of the cursor are shifted right, with the rightmost characters on the line\n"
1239 "is_linetouched($self, line, /)\n"
1242 "Return True if the specified line was modified, otherwise return False.\n"
1244 " line\n"
1247 "Raise a curses.error exception if line is not valid for the given window.");
1253 _curses_window_is_linetouched_impl(PyCursesWindowObject *self, int line);
1259 int line;
1261 line = _PyLong_AsInt(arg);
1262 if (line == -1 && PyErr_Occurred()) {
1265 return_value = _curses_window_is_linetouched_impl(self, line);
1483 " Starting line number.\n"
1581 " First line number.\n"
1583 " Last line number.\n"
1717 "Pretend count lines have been changed, starting with line start.\n"
1762 "Display a vertical line.\n"
1914 "In cbreak mode (sometimes called \"rare\" mode) normal tty line buffering is\n"
2485 "Return True if the terminal has insert- and delete-line capabilities.");
2982 "Return the user\'s current line kill character.");
3262 "newline into return and line-feed on output. Newline mode is initially on.");
3299 "Return to normal \"cooked\" mode with line buffering.");
3381 "Return to normal \"cooked\" mode with line buffering.");
3555 "In raw mode, normal line buffering and processing of interrupt, quit,\n"