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: v2.7.2rc1~275 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6076c1b40a0b0f1d80dd5a21f55d4abf4d8547bb;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 a2519f4b55be..63691db8a926 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1176,6 +1176,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. |