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
572a9f32
Kaydet (Commit)
572a9f32
authored
Mar 01, 2006
tarafından
Thomas Wouters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use %zd format characters for Py_ssize_t types.
üst
7c187bcc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
getargs.c
Python/getargs.c
+6
-6
No files found.
Python/getargs.c
Dosyayı görüntüle @
572a9f32
...
...
@@ -1686,13 +1686,13 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m
if
(
name
!=
NULL
)
PyErr_Format
(
PyExc_TypeError
,
"%s expected %s%
d arguments, got %
d"
,
"%s expected %s%
zd arguments, got %z
d"
,
name
,
(
min
==
max
?
""
:
"at least "
),
min
,
l
);
else
PyErr_Format
(
PyExc_TypeError
,
"unpacked tuple should have %s%d elements,"
" but has %d"
,
"unpacked tuple should have %s%
z
d elements,"
" but has %
z
d"
,
(
min
==
max
?
""
:
"at least "
),
min
,
l
);
va_end
(
vargs
);
return
0
;
...
...
@@ -1701,13 +1701,13 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m
if
(
name
!=
NULL
)
PyErr_Format
(
PyExc_TypeError
,
"%s expected %s%
d arguments, got %
d"
,
"%s expected %s%
zd arguments, got %z
d"
,
name
,
(
min
==
max
?
""
:
"at most "
),
max
,
l
);
else
PyErr_Format
(
PyExc_TypeError
,
"unpacked tuple should have %s%d elements,"
" but has %d"
,
"unpacked tuple should have %s%
z
d elements,"
" but has %
z
d"
,
(
min
==
max
?
""
:
"at most "
),
max
,
l
);
va_end
(
vargs
);
return
0
;
...
...
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