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
3b590114
Kaydet (Commit)
3b590114
authored
Kas 15, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix compiler warning on Windows 64 bit: _init_pos_args() result type is
Py_ssize_t, not int
üst
042cb465
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
_ctypes.c
Modules/_ctypes/_ctypes.c
+2
-2
No files found.
Modules/_ctypes/_ctypes.c
Dosyayı görüntüle @
3b590114
...
...
@@ -4054,8 +4054,8 @@ Struct_init(PyObject *self, PyObject *args, PyObject *kwds)
return
-
1
;
}
if
(
PyTuple_GET_SIZE
(
args
))
{
in
t
res
=
_init_pos_args
(
self
,
Py_TYPE
(
self
),
args
,
kwds
,
0
);
Py_ssize_
t
res
=
_init_pos_args
(
self
,
Py_TYPE
(
self
),
args
,
kwds
,
0
);
if
(
res
==
-
1
)
return
-
1
;
if
(
res
<
PyTuple_GET_SIZE
(
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