Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
ab7886b7
Kaydet (Commit)
ab7886b7
authored
Nis 26, 2017
tarafından
Eijebong
Kaydeden (comit)
Xiang Zhang
Nis 26, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30101: Add support for curses.A_ITALIC. (#1015)
üst
8ca2f2fa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
0 deletions
+11
-0
curses.rst
Doc/library/curses.rst
+5
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
_cursesmodule.c
Modules/_cursesmodule.c
+3
-0
No files found.
Doc/library/curses.rst
Dosyayı görüntüle @
ab7886b7
...
...
@@ -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.
...
...
Misc/ACKS
Dosyayı görüntüle @
ab7886b7
...
...
@@ -1116,6 +1116,7 @@ Koray Oner
Piet van Oostrum
Tomas Oppelstrup
Jason Orendorff
Bastien Orivel
Douglas Orr
William Orr
Michele Orrù
...
...
Misc/NEWS
Dosyayı görüntüle @
ab7886b7
...
...
@@ -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.
...
...
Modules/_cursesmodule.c
Dosyayı görüntüle @
ab7886b7
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment