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
0ce5b6e2
Kaydet (Commit)
0ce5b6e2
authored
Kas 10, 2015
tarafından
Stefan Krah
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers.
üst
e46e09d0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
test_buffer.py
Lib/test/test_buffer.py
+5
-0
test_memoryview.py
Lib/test/test_memoryview.py
+7
-0
memoryobject.c
Objects/memoryobject.c
+16
-1
No files found.
Lib/test/test_buffer.py
Dosyayı görüntüle @
0ce5b6e2
...
...
@@ -841,6 +841,11 @@ class TestBufferProtocol(unittest.TestCase):
# test tobytes()
self
.
assertEqual
(
result
.
tobytes
(),
b
)
# test hex()
m
=
memoryview
(
result
)
h
=
""
.
join
(
"
%02
x"
%
c
for
c
in
b
)
self
.
assertEqual
(
m
.
hex
(),
h
)
# lst := expected multi-dimensional logical representation
# flatten(lst) := elements in C-order
ff
=
fmt
if
fmt
else
'B'
...
...
Lib/test/test_memoryview.py
Dosyayı görüntüle @
0ce5b6e2
...
...
@@ -512,6 +512,13 @@ class OtherTest(unittest.TestCase):
m
[
2
:]
=
memoryview
(
p6
)
.
cast
(
format
)[
2
:]
self
.
assertEqual
(
d
.
value
,
0.6
)
def
test_memoryview_hex
(
self
):
# Issue #9951: memoryview.hex() segfaults with non-contiguous buffers.
x
=
b
'0'
*
200000
m1
=
memoryview
(
x
)
m2
=
m1
[::
-
1
]
self
.
assertEqual
(
m2
.
hex
(),
'30'
*
200000
)
if
__name__
==
"__main__"
:
unittest
.
main
()
Objects/memoryobject.c
Dosyayı görüntüle @
0ce5b6e2
...
...
@@ -2156,8 +2156,23 @@ static PyObject *
memory_hex
(
PyMemoryViewObject
*
self
,
PyObject
*
dummy
)
{
Py_buffer
*
src
=
VIEW_ADDR
(
self
);
PyObject
*
bytes
;
PyObject
*
ret
;
CHECK_RELEASED
(
self
);
return
_Py_strhex
(
src
->
buf
,
src
->
len
);
if
(
MV_C_CONTIGUOUS
(
self
->
flags
))
{
return
_Py_strhex
(
src
->
buf
,
src
->
len
);
}
bytes
=
memory_tobytes
(
self
,
dummy
);
if
(
bytes
==
NULL
)
return
NULL
;
ret
=
_Py_strhex
(
PyBytes_AS_STRING
(
bytes
),
Py_SIZE
(
bytes
));
Py_DECREF
(
bytes
);
return
ret
;
}
static
PyObject
*
...
...
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