From 34b9cfcdcfa856be6196bec8bc344ced59dfa904 Mon Sep 17 00:00:00 2001 From: Vegard Stikbakke Date: Sat, 6 Jun 2020 17:45:37 +0200 Subject: [PATCH] curses.bkgset -> bkgdset (#4191) --- stdlib/2and3/_curses.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2and3/_curses.pyi b/stdlib/2and3/_curses.pyi index a8d74446c..8c6d986cc 100644 --- a/stdlib/2and3/_curses.pyi +++ b/stdlib/2and3/_curses.pyi @@ -316,7 +316,7 @@ class _CursesWindow: def attron(self, attr: int) -> None: ... def attrset(self, attr: int) -> None: ... def bkgd(self, ch: _chtype, attr: int = ...) -> None: ... - def bkgset(self, ch: _chtype, attr: int = ...) -> None: ... + def bkgdset(self, ch: _chtype, attr: int = ...) -> None: ... def border(self, ls: _chtype = ..., rs: _chtype = ..., ts: _chtype = ..., bs: _chtype = ..., tl: _chtype = ..., tr: _chtype = ..., bl: _chtype = ..., br: _chtype = ...) -> None: ... @overload def box(self) -> None: ...