diff options
author | Georg Brandl <georg@python.org> | 2011-03-06 10:08:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-03-06 10:08:35 (GMT) |
commit | 931e5c1038d483469a29e2fb8c89298ffb449f01 (patch) | |
tree | c90b32b5e90482634fcde85e76e021844883ccef /Doc/library/curses.rst | |
parent | a2388be2af60e6eac4df5ae6bcce1658fd4cd276 (diff) | |
download | cpython-931e5c1038d483469a29e2fb8c89298ffb449f01.zip cpython-931e5c1038d483469a29e2fb8c89298ffb449f01.tar.gz cpython-931e5c1038d483469a29e2fb8c89298ffb449f01.tar.bz2 |
#11292: add missing A_REVERSE to curses attribute table.
Diffstat (limited to 'Doc/library/curses.rst')
-rw-r--r-- | Doc/library/curses.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index f9ba0d6..6d2baa0 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. | |