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
349a988b
Kaydet (Commit)
349a988b
authored
Eki 12, 1995
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added third argument to call()
üst
99bbd180
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
object_tail
Tools/modulator/Templates/object_tail
+1
-1
object_tp_call
Tools/modulator/Templates/object_tp_call
+2
-1
No files found.
Tools/modulator/Templates/object_tail
Dosyayı görüntüle @
349a988b
...
@@ -20,7 +20,7 @@ static PyTypeObject $Abbrev$type = {
...
@@ -20,7 +20,7 @@ static PyTypeObject $Abbrev$type = {
$tp_as_sequence$, /*tp_as_sequence*/
$tp_as_sequence$, /*tp_as_sequence*/
$tp_as_mapping$, /*tp_as_mapping*/
$tp_as_mapping$, /*tp_as_mapping*/
(hashfunc)$tp_hash$, /*tp_hash*/
(hashfunc)$tp_hash$, /*tp_hash*/
(
bi
naryfunc)$tp_call$, /*tp_call*/
(
ter
naryfunc)$tp_call$, /*tp_call*/
(reprfunc)$tp_str$, /*tp_str*/
(reprfunc)$tp_str$, /*tp_str*/
/* Space for future expansion */
/* Space for future expansion */
...
...
Tools/modulator/Templates/object_tp_call
Dosyayı görüntüle @
349a988b
static PyObject *
static PyObject *
$abbrev$_call(self, args)
$abbrev$_call(self, args
, kwargs
)
$abbrev$object *self;
$abbrev$object *self;
PyObject *args;
PyObject *args;
PyObject *kwargs;
{
{
/* XXXX Return the result of calling self with argument args */
/* XXXX Return the result of calling self with argument 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