From caa92aa88a411b3e963fa2d99ae4974af8816c18 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Wed, 21 May 2025 12:07:48 +0300 Subject: [PATCH] Fix signature of `_curses.assume_default_colors` in the docs --- 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 137504c51b4358..8c6831183982dc 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.