]> granicus.if.org Git - python/commitdiff
bpo-30101: Add support for curses.A_ITALIC. (#1015)
authorEijebong <Eijebong@users.noreply.github.com>
Wed, 26 Apr 2017 15:17:12 +0000 (17:17 +0200)
committerXiang Zhang <angwerzx@126.com>
Wed, 26 Apr 2017 15:17:12 +0000 (23:17 +0800)
Doc/library/curses.rst
Misc/ACKS
Misc/NEWS
Modules/_cursesmodule.c

index d51085506c2a96e755b934da4f6d728f3691dbd3..8e509d50e648d46e04e645c2e1aa105f26b5652b 100644 (file)
@@ -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.
 
index be2561c72555397f3abe5efaba4f85da6bf8151d..fb62b5b56a2b5ba1c8a755288766a638bea63634 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1116,6 +1116,7 @@ Koray Oner
 Piet van Oostrum
 Tomas Oppelstrup
 Jason Orendorff
+Bastien Orivel
 Douglas Orr
 William Orr
 Michele OrrĂ¹
index d9b13c7c9835f448fcd59c847d1670a31ed12b0e..71db0ee46b0dc483617d154a1541ad87b9e0f1e1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -317,6 +317,8 @@ Extension Modules
 Library
 -------
 
+- bpo-30101: Add support for curses.A_ITALIC.
+
 - bpo-29822: inspect.isabstract() now works during __init_subclass__.  Patch
   by Nate Soares.
 
index 8f0a12bbb094d1777399da0247dcfd196d18771c..f278268e6702abf883c7ace1675e38a64fdf4d7c 100644 (file)
@@ -3335,6 +3335,9 @@ PyInit__curses(void)
     SetDictInt("A_BLINK",               A_BLINK);
     SetDictInt("A_DIM",                 A_DIM);
     SetDictInt("A_BOLD",                A_BOLD);
+#ifdef A_ITALIC
+    SetDictInt("A_ITALIC",              A_ITALIC);
+#endif
     SetDictInt("A_ALTCHARSET",          A_ALTCHARSET);
 #if !defined(__NetBSD__)
     SetDictInt("A_INVIS",           A_INVIS);