From: Georg Brandl Date: Sun, 6 Mar 2011 10:08:35 +0000 (+0100) Subject: #11292: add missing A_REVERSE to curses attribute table. X-Git-Tag: v3.2.1b1~342^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=931e5c1038d483469a29e2fb8c89298ffb449f01;p=thirdparty%2FPython%2Fcpython.git #11292: add missing A_REVERSE to curses attribute table. --- diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index f9ba0d624b23..6d2baa0f9926 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1173,6 +1173,9 @@ Several constants are available to specify character cell attributes: +------------------+-------------------------------+ | ``A_NORMAL`` | Normal attribute. | +------------------+-------------------------------+ +| ``A_REVERSE`` | Reverse background and | +| | foreground colors. | ++------------------+-------------------------------+ | ``A_STANDOUT`` | Standout mode. | +------------------+-------------------------------+ | ``A_UNDERLINE`` | Underline mode. |