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
29604a1b
Kaydet (Commit)
29604a1b
authored
Ock 26, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1940: make it possible to use curses.filter() before curses.initscr()
as the documentation says.
üst
2a7d991c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
NEWS
Misc/NEWS
+4
-0
_cursesmodule.c
Modules/_cursesmodule.c
+10
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
29604a1b
...
@@ -1103,9 +1103,13 @@ Library
...
@@ -1103,9 +1103,13 @@ Library
does not claim to support starttls. Adds the SMTP.ehlo_or_helo_if_needed()
does not claim to support starttls. Adds the SMTP.ehlo_or_helo_if_needed()
method. Patch contributed by Bill Fenner.
method. Patch contributed by Bill Fenner.
Extension Modules
Extension Modules
-----------------
-----------------
- #1940: make it possible to use curses.filter() before curses.initscr()
as the documentation says.
- Backport of _fileio module from Python 3.0.
- Backport of _fileio module from Python 3.0.
- #1087741: mmap.mmap is now a class, not a factory function. It is also
- #1087741: mmap.mmap is now a class, not a factory function. It is also
...
...
Modules/_cursesmodule.c
Dosyayı görüntüle @
29604a1b
...
@@ -1677,10 +1677,19 @@ NoArgTrueFalseFunction(has_colors)
...
@@ -1677,10 +1677,19 @@ NoArgTrueFalseFunction(has_colors)
NoArgTrueFalseFunction
(
has_ic
)
NoArgTrueFalseFunction
(
has_ic
)
NoArgTrueFalseFunction
(
has_il
)
NoArgTrueFalseFunction
(
has_il
)
NoArgTrueFalseFunction
(
isendwin
)
NoArgTrueFalseFunction
(
isendwin
)
NoArgNoReturnVoidFunction
(
filter
)
NoArgNoReturnVoidFunction
(
flushinp
)
NoArgNoReturnVoidFunction
(
flushinp
)
NoArgNoReturnVoidFunction
(
noqiflush
)
NoArgNoReturnVoidFunction
(
noqiflush
)
static
PyObject
*
PyCurses_filter
(
PyObject
*
self
)
{
/* not checking for PyCursesInitialised here since filter() must
be called before initscr() */
filter
();
Py_INCREF
(
Py_None
);
return
Py_None
;
}
static
PyObject
*
static
PyObject
*
PyCurses_Color_Content
(
PyObject
*
self
,
PyObject
*
args
)
PyCurses_Color_Content
(
PyObject
*
self
,
PyObject
*
args
)
{
{
...
...
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