diff options
author | Eijebong <Eijebong@users.noreply.github.com> | 2017-04-26 15:17:12 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2017-04-26 15:17:12 (GMT) |
commit | ab7886b78574d9224b26dc3a5b08e5c105fbbf11 (patch) | |
tree | eea5488c157c384333e35d19c8390f87fc54510b /Doc | |
parent | 8ca2f2faefa8dba323a2e4c4b86efb633d7a53cf (diff) | |
download | cpython-ab7886b78574d9224b26dc3a5b08e5c105fbbf11.zip cpython-ab7886b78574d9224b26dc3a5b08e5c105fbbf11.tar.gz cpython-ab7886b78574d9224b26dc3a5b08e5c105fbbf11.tar.bz2 |
bpo-30101: Add support for curses.A_ITALIC. (#1015)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/curses.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index d510855..8e509d5 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1282,6 +1282,8 @@ Several constants are available to specify character cell attributes: +------------------+-------------------------------+ | ``A_BOLD`` | Bold mode. | +------------------+-------------------------------+ +| ``A_ITALIC`` | Italic mode. | ++------------------+-------------------------------+ | ``A_DIM`` | Dim mode. | +------------------+-------------------------------+ | ``A_NORMAL`` | Normal attribute. | @@ -1294,6 +1296,9 @@ Several constants are available to specify character cell attributes: | ``A_UNDERLINE`` | Underline mode. | +------------------+-------------------------------+ +.. versionadded:: 3.7 + ``A_ITALIC`` was added. + Keys are referred to by integer constants with names starting with ``KEY_``. The exact keycaps available are system dependent. |