From 7883bff18b8bd31c87b941e29fe44a41f611d9c0 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Wed, 21 May 2025 15:56:34 +0300 Subject: [PATCH] Fix signature of `_curses.assume_default_colors` in the docs (GH-134409) (cherry picked from commit dcfc91e4e552e74a43f5fdf049af7a8fe7a784ee) Co-authored-by: sobolevn --- Doc/library/curses.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 5ec23b61396773..0b13c559295f3c 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -68,7 +68,7 @@ The module :mod:`curses` defines the following exception: The module :mod:`curses` defines the following functions: -.. function:: assume_default_colors(fg, bg) +.. function:: assume_default_colors(fg, bg, /) Allow use of default values for colors on terminals supporting this feature. Use this to support transparency in your application.