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
8866e0ab
Kaydet (Commit)
8866e0ab
authored
Eki 27, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Try to get this test to pass on Win64 by making clean for ssize_t
üst
bed67844
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
_testcapimodule.c
Modules/_testcapimodule.c
+6
-4
No files found.
Modules/_testcapimodule.c
Dosyayı görüntüle @
8866e0ab
...
...
@@ -5,6 +5,8 @@
* standard Python regression test, via Lib/test/test_capi.py.
*/
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include <float.h>
#include "structmember.h"
...
...
@@ -377,8 +379,8 @@ getargs_n(PyObject *self, PyObject *args)
{
Py_ssize_t
value
;
if
(
!
PyArg_ParseTuple
(
args
,
"n"
,
&
value
))
return
NULL
;
return
Py
Int
_FromSsize_t
(
value
);
return
NULL
;
return
Py
Long
_FromSsize_t
(
value
);
}
#ifdef HAVE_LONG_LONG
...
...
@@ -465,7 +467,7 @@ test_u_code(PyObject *self)
{
PyObject
*
tuple
,
*
obj
;
Py_UNICODE
*
value
;
in
t
len
;
Py_ssize_
t
len
;
tuple
=
PyTuple_New
(
1
);
if
(
tuple
==
NULL
)
...
...
@@ -503,7 +505,7 @@ test_Z_code(PyObject *self)
{
PyObject
*
tuple
,
*
obj
;
Py_UNICODE
*
value1
,
*
value2
;
in
t
len1
,
len2
;
Py_ssize_
t
len1
,
len2
;
tuple
=
PyTuple_New
(
2
);
if
(
tuple
==
NULL
)
...
...
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