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
2d0a69a4
Kaydet (Commit)
2d0a69a4
authored
May 03, 2015
tarafından
Larry Hastings
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Windows build breakage from checkins on Issues #20148 and #20168.
üst
b174b85c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
38 deletions
+33
-38
_sre.c
Modules/_sre.c
+0
-0
_tkinter.c
Modules/_tkinter.c
+33
-38
No files found.
Modules/_sre.c
Dosyayı görüntüle @
2d0a69a4
This diff is collapsed.
Click to expand it.
Modules/_tkinter.c
Dosyayı görüntüle @
2d0a69a4
...
...
@@ -2682,8 +2682,6 @@ _tkinter_tktimertoken_deletetimerhandler_impl(TkttObject *self)
Py_RETURN_NONE
;
}
static
PyMethodDef
Tktt_methods
[];
static
TkttObject
*
Tktt_New
(
PyObject
*
func
)
{
...
...
@@ -2725,22 +2723,6 @@ Tktt_Repr(PyObject *self)
v
->
func
==
NULL
?
", handler deleted"
:
""
);
}
static
PyType_Slot
Tktt_Type_slots
[]
=
{
{
Py_tp_dealloc
,
Tktt_Dealloc
},
{
Py_tp_repr
,
Tktt_Repr
},
{
Py_tp_methods
,
Tktt_methods
},
{
0
,
0
}
};
static
PyType_Spec
Tktt_Type_spec
=
{
"_tkinter.tktimertoken"
,
sizeof
(
TkttObject
),
0
,
Py_TPFLAGS_DEFAULT
,
Tktt_Type_slots
,
};
/** Timer Handler **/
static
void
...
...
@@ -3001,11 +2983,6 @@ _tkinter_tkapp_willdispatch_impl(TkappObject *self)
}
/**** Tkapp Method List ****/
static
PyMethodDef
Tkapp_methods
[];
/**** Tkapp Type Methods ****/
static
void
...
...
@@ -3021,21 +2998,6 @@ Tkapp_Dealloc(PyObject *self)
DisableEventHook
();
}
static
PyType_Slot
Tkapp_Type_slots
[]
=
{
{
Py_tp_dealloc
,
Tkapp_Dealloc
},
{
Py_tp_methods
,
Tkapp_methods
},
{
0
,
0
}
};
static
PyType_Spec
Tkapp_Type_spec
=
{
"_tkinter.tkapp"
,
sizeof
(
TkappObject
),
0
,
Py_TPFLAGS_DEFAULT
,
Tkapp_Type_slots
,
};
/**** Tkinter Module ****/
...
...
@@ -3218,6 +3180,24 @@ static PyMethodDef Tktt_methods[] =
{
NULL
,
NULL
}
};
static
PyType_Slot
Tktt_Type_slots
[]
=
{
{
Py_tp_dealloc
,
Tktt_Dealloc
},
{
Py_tp_repr
,
Tktt_Repr
},
{
Py_tp_methods
,
Tktt_methods
},
{
0
,
0
}
};
static
PyType_Spec
Tktt_Type_spec
=
{
"_tkinter.tktimertoken"
,
sizeof
(
TkttObject
),
0
,
Py_TPFLAGS_DEFAULT
,
Tktt_Type_slots
,
};
/**** Tkapp Method List ****/
static
PyMethodDef
Tkapp_methods
[]
=
{
_TKINTER_TKAPP_WILLDISPATCH_METHODDEF
...
...
@@ -3255,6 +3235,21 @@ static PyMethodDef Tkapp_methods[] =
{
NULL
,
NULL
}
};
static
PyType_Slot
Tkapp_Type_slots
[]
=
{
{
Py_tp_dealloc
,
Tkapp_Dealloc
},
{
Py_tp_methods
,
Tkapp_methods
},
{
0
,
0
}
};
static
PyType_Spec
Tkapp_Type_spec
=
{
"_tkinter.tkapp"
,
sizeof
(
TkappObject
),
0
,
Py_TPFLAGS_DEFAULT
,
Tkapp_Type_slots
,
};
static
PyMethodDef
moduleMethods
[]
=
{
_TKINTER__FLATTEN_METHODDEF
...
...
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