8000 bpo-30176: add missing curses cell attributes constants by zhangyangyu · Pull Request #1302 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-30176: add missing curses cell attributes constants #1302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 16, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
group and reorder
  • Loading branch information
zhangyangyu committed Apr 26, 2017
commit 06d308c9b56a6a20550d733116c84b1636924ede
30 changes: 15 additions & 15 deletions Doc/library/curses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1280,34 +1280,34 @@ The exact constants available are system dependent.
| ``A_ATTRIBUTES`` | Bit-mask to extract |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Either add periods at the end of new descriptions or remove them at the end of existing descriptions.

| | attributes |
+------------------+-------------------------------+
| ``A_ALTCHARSET`` | Alternate character set mode. |
| ``A_CHARTEXT`` | Bit-mask to extract a |
| | character |
+------------------+-------------------------------+
| ``A_BLINK`` | Blink mode. |
| ``A_COLOR`` | Bit-mask to extract |
| | color-pair field information |
+------------------+-------------------------------+
| ``A_BOLD`` | Bold mode. |
| ``A_ALTCHARSET`` | Alternate character set mode |
+------------------+-------------------------------+
| ``A_ITALIC`` | Italic mode. |
| ``A_BLINK`` | Blink mode |
+------------------+-------------------------------+
| ``A_DIM`` | Dim mode. |
| ``A_BOLD`` | Bold mode |
+------------------+-------------------------------+
| ``A_INVIS`` | Invisible or blank mode |
| ``A_DIM`` | Dim mode |
+------------------+-------------------------------+
| ``A_PROTECT`` | Protected mode |
| ``A_INVIS`` | Invisible or blank mode |
+------------------+-------------------------------+
| ``A_CHARTEXT`` | Bit-mask to extract a |
| | character |
| ``A_ITALIC`` | Italic mode |
+------------------+-------------------------------+
| ``A_COLOR`` | Bit-mask to extract |
| | color-pair field information |
| ``A_NORMAL`` | Normal attribute |
+------------------+-------------------------------+
| ``A_NORMAL`` | Normal attribute. |
| ``A_PROTECT`` | Protected mode |
+------------------+-------------------------------+
| ``A_REVERSE`` | Reverse background and |
| | foreground colors. |
| | foreground colors |
+------------------+-------------------------------+
| ``A_STANDOUT`` | Standout mode. |
| ``A_STANDOUT`` | Standout mode |
+------------------+-------------------------------+
| ``A_UNDERLINE`` | Underline mode. |
| ``A_UNDERLINE`` | Underline mode |
+------------------+-------------------------------+
| ``A_HORIZONTAL`` | Horizontal highlight |
+------------------+-------------------------------+
Expand Down
0