From 6076c1b40a0b0f1d80dd5a21f55d4abf4d8547bb Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Mar 2011 11:08:35 +0100 Subject: [PATCH] #11292: add missing A_REVERSE to curses attribute table. --- Doc/library/curses.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index a2519f4b55b..63691db8a92 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. |