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
6915c4d0
Kaydet (Commit)
6915c4d0
authored
Ock 19, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Support building this as a DLL under Cygwin.
üst
fc5ce61a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
_cursesmodule.c
Modules/_cursesmodule.c
+5
-2
No files found.
Modules/_cursesmodule.c
Dosyayı görüntüle @
6915c4d0
...
...
@@ -1440,7 +1440,7 @@ PyCursesWindow_GetAttr(PyCursesWindowObject *self, char *name)
/* -------------------------------------------------------*/
PyTypeObject
PyCursesWindow_Type
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
PyObject_HEAD_INIT
(
NULL
)
0
,
/*ob_size*/
"curses window"
,
/*tp_name*/
sizeof
(
PyCursesWindowObject
),
/*tp_basicsize*/
...
...
@@ -2431,12 +2431,15 @@ static PyMethodDef PyCurses_methods[] = {
/* Initialization function for the module */
void
DL_EXPORT
(
void
)
init_curses
(
void
)
{
PyObject
*
m
,
*
d
,
*
v
,
*
c_api_object
;
static
void
*
PyCurses_API
[
PyCurses_API_pointers
];
/* Initialize object type */
PyCursesWindow_Type
.
ob_type
=
&
PyType_Type
;
/* Initialize the C API pointer array */
PyCurses_API
[
0
]
=
(
void
*
)
&
PyCursesWindow_Type
;
PyCurses_API
[
1
]
=
(
void
*
)
func_PyCursesSetupTermCalled
;
...
...
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