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
dda068de
Kaydet (Commit)
dda068de
authored
Tem 10, 2006
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix bug #1518190: accept any integer or long value in the
ctypes.c_void_p constructor.
üst
70e8e877
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
8 deletions
+39
-8
test_pointers.py
Lib/ctypes/test/test_pointers.py
+17
-0
NEWS
Misc/NEWS
+3
-0
cfield.c
Modules/_ctypes/cfield.c
+19
-8
No files found.
Lib/ctypes/test/test_pointers.py
Dosyayı görüntüle @
dda068de
...
...
@@ -157,6 +157,23 @@ class PointersTestCase(unittest.TestCase):
q
=
pointer
(
y
)
pp
[
0
]
=
q
# <==
self
.
failUnlessEqual
(
p
[
0
],
6
)
def
test_c_void_p
(
self
):
# http://sourceforge.net/tracker/?func=detail&aid=1518190&group_id=5470&atid=105470
if
sizeof
(
c_void_p
)
==
4
:
self
.
failUnlessEqual
(
c_void_p
(
0xFFFFFFFF
L
)
.
value
,
c_void_p
(
-
1
)
.
value
)
self
.
failUnlessEqual
(
c_void_p
(
0xFFFFFFFFFFFFFFFF
L
)
.
value
,
c_void_p
(
-
1
)
.
value
)
elif
sizeof
(
c_void_p
)
==
8
:
self
.
failUnlessEqual
(
c_void_p
(
0xFFFFFFFF
L
)
.
value
,
0xFFFFFFFF
L
)
self
.
failUnlessEqual
(
c_void_p
(
0xFFFFFFFFFFFFFFFF
L
)
.
value
,
c_void_p
(
-
1
)
.
value
)
self
.
failUnlessEqual
(
c_void_p
(
0xFFFFFFFFFFFFFFFFFFFFFFFF
L
)
.
value
,
c_void_p
(
-
1
)
.
value
)
self
.
assertRaises
(
TypeError
,
c_void_p
,
3.14
)
# make sure floats are NOT accepted
self
.
assertRaises
(
TypeError
,
c_void_p
,
object
())
# nor other objects
if
__name__
==
'__main__'
:
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
dda068de
...
...
@@ -39,6 +39,9 @@ Core and builtins
Library
-------
-
Bug
#
1518190
:
The
ctypes
.
c_void_p
constructor
now
accepts
any
integer
or
long
,
without
range
checking
.
-
Bug
#
1508010
:
msvccompiler
now
requires
the
DISTUTILS_USE_SDK
environment
variable
to
be
set
in
order
to
the
SDK
environment
for
finding
the
compiler
,
include
files
,
etc
.
...
...
Modules/_ctypes/cfield.c
Dosyayı görüntüle @
dda068de
...
...
@@ -1486,16 +1486,27 @@ P_set(void *ptr, PyObject *value, unsigned size)
*
(
void
**
)
ptr
=
NULL
;
_RET
(
value
);
}
v
=
PyLong_AsVoidPtr
(
value
);
if
(
PyErr_Occurred
())
{
/* prevent the SystemError: bad argument to internal function */
if
(
!
PyInt_Check
(
value
)
&&
!
PyLong_Check
(
value
))
{
PyErr_SetString
(
PyExc_TypeError
,
"cannot be converted to pointer"
);
}
if
(
!
PyInt_Check
(
value
)
&&
!
PyLong_Check
(
value
))
{
PyErr_SetString
(
PyExc_TypeError
,
"cannot be converted to pointer"
);
return
NULL
;
}
#if SIZEOF_VOID_P <= SIZEOF_LONG
v
=
(
void
*
)
PyInt_AsUnsignedLongMask
(
value
);
#else
#ifndef HAVE_LONG_LONG
# error "PyLong_AsVoidPtr: sizeof(void*) > sizeof(long), but no long long"
#elif SIZEOF_LONG_LONG < SIZEOF_VOID_P
# error "PyLong_AsVoidPtr: sizeof(PY_LONG_LONG) < sizeof(void*)"
#endif
v
=
(
void
*
)
PyInt_AsUnsignedLongLongMask
(
value
);
#endif
if
(
PyErr_Occurred
())
return
NULL
;
*
(
void
**
)
ptr
=
v
;
_RET
(
value
);
}
...
...
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