All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.python.types.typeshed.stdlib.2and3.curses.textpad.pyi Maven / Gradle / Ivy

There is a newer version: 4.17.0.14845
Show newest version
from _curses import _CursesWindow
from typing import Callable, Optional, Union

def rectangle(win: _CursesWindow, uly: int, ulx: int, lry: int, lrx: int) -> None: ...

class Textbox:
    stripspaces: bool
    def __init__(self, win: _CursesWindow, insert_mode: bool = ...) -> None: ...
    def edit(self, validate: Optional[Callable[[int], int]] = ...) -> str: ...
    def do_command(self, ch: Union[str, int]) -> None: ...
    def gather(self) -> str: ...




© 2015 - 2024 Weber Informatics LLC | Privacy Policy