From c8bfa511f7d126249de8e98428f43ad4c64e177c Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Mon, 24 Jan 2022 13:13:18 +0300 Subject: [PATCH] Add `TODO` to support `Concatenate` in `curses` (#7018) --- stdlib/curses/__init__.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/curses/__init__.pyi b/stdlib/curses/__init__.pyi index aef2d9b95..4fb078488 100644 --- a/stdlib/curses/__init__.pyi +++ b/stdlib/curses/__init__.pyi @@ -14,4 +14,6 @@ if sys.platform != "win32": # available after calling `curses.start_color()` COLORS: int COLOR_PAIRS: int + # TODO: wait for `Concatenate` support + # def wrapper(__func: Callable[Concatenate[_CursesWindow, _P], _T], *arg: _P.args, **kwds: _P.kwargs) -> _T: ... def wrapper(__func: Callable[..., _T], *arg: Any, **kwds: Any) -> _T: ...