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
430947ac
Kaydet (Commit)
430947ac
authored
Nis 06, 2006
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace a few more 'char' types with 'signed char', to fix test failures
on platforms (ppc debian) where 'char' is unsigned.
üst
b4319982
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
_ctypes_test.c
Modules/_ctypes/_ctypes_test.c
+5
-5
No files found.
Modules/_ctypes/_ctypes_test.c
Dosyayı görüntüle @
430947ac
...
...
@@ -51,21 +51,21 @@ EXPORT(void) _testfunc_v(int a, int b, int *presult)
*
presult
=
a
+
b
;
}
EXPORT
(
int
)
_testfunc_i_bhilfd
(
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
EXPORT
(
int
)
_testfunc_i_bhilfd
(
signed
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
{
// printf("_testfunc_i_bhilfd got %d %d %d %ld %f %f\n",
// b, h, i, l, f, d);
return
(
int
)(
b
+
h
+
i
+
l
+
f
+
d
);
}
EXPORT
(
float
)
_testfunc_f_bhilfd
(
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
EXPORT
(
float
)
_testfunc_f_bhilfd
(
signed
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
{
// printf("_testfunc_f_bhilfd got %d %d %d %ld %f %f\n",
// b, h, i, l, f, d);
return
(
float
)(
b
+
h
+
i
+
l
+
f
+
d
);
}
EXPORT
(
double
)
_testfunc_d_bhilfd
(
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
EXPORT
(
double
)
_testfunc_d_bhilfd
(
signed
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
{
// printf("_testfunc_d_bhilfd got %d %d %d %ld %f %f\n",
// b, h, i, l, f, d);
...
...
@@ -152,13 +152,13 @@ EXPORT(int) _testfunc_callback_with_pointer(int (*func)(int *))
}
#ifdef HAVE_LONG_LONG
EXPORT
(
PY_LONG_LONG
)
_testfunc_q_bhilfdq
(
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
EXPORT
(
PY_LONG_LONG
)
_testfunc_q_bhilfdq
(
signed
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
,
PY_LONG_LONG
q
)
{
return
(
PY_LONG_LONG
)(
b
+
h
+
i
+
l
+
f
+
d
+
q
);
}
EXPORT
(
PY_LONG_LONG
)
_testfunc_q_bhilfd
(
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
EXPORT
(
PY_LONG_LONG
)
_testfunc_q_bhilfd
(
signed
char
b
,
short
h
,
int
i
,
long
l
,
float
f
,
double
d
)
{
return
(
PY_LONG_LONG
)(
b
+
h
+
i
+
l
+
f
+
d
);
}
...
...
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