diff options
author | Georg Brandl <georg@python.org> | 2011-03-06 11:08:35 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-03-06 11:08:35 +0100 |
commit | 6076c1b40a0b0f1d80dd5a21f55d4abf4d8547bb (patch) | |
tree | 426adb9c1dd0062d5ef0b1070494b1240f4e8a55 | |
parent | 6dea5f57022e0c1bfb9ea52cda2f1d4f50a34727 (diff) | |
download | cpython-git-6076c1b40a0b0f1d80dd5a21f55d4abf4d8547bb.tar.gz |
#11292: add missing A_REVERSE to curses attribute table.
-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 a2519f4b55..63691db8a9 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. | |