+------------------+-------------------------------+
| ``A_BOLD`` | Bold mode. |
+------------------+-------------------------------+
+| ``A_ITALIC`` | Italic mode. |
++------------------+-------------------------------+
| ``A_DIM`` | Dim mode. |
+------------------+-------------------------------+
| ``A_NORMAL`` | Normal attribute. |
| ``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.
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);