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
60b18340
Kaydet (Commit)
60b18340
authored
Eki 03, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19014: memoryview.cast() is now allowed on zero-length views.
üst
def0a4c2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
test_buffer.py
Lib/test/test_buffer.py
+10
-3
NEWS
Misc/NEWS
+2
-0
memoryobject.c
Objects/memoryobject.c
+1
-1
No files found.
Lib/test/test_buffer.py
Dosyayı görüntüle @
60b18340
...
...
@@ -2432,15 +2432,22 @@ class TestBufferProtocol(unittest.TestCase):
self
.
assertRaises
(
ValueError
,
get_contiguous
,
nd
[::
-
1
],
PyBUF_READ
,
'C'
)
def
test_memoryview_cast_zero_shape
(
self
):
# Casts are undefined if shape contains zeros. These arrays are
# regarded as C-contiguous by Numpy and PyBuffer_GetContiguous(),
# so they are not caught by the test for C-contiguity in memory_cast().
# Casts are undefined if buffer is multidimensional and shape
# contains zeros. These arrays are regarded as C-contiguous by
# Numpy and PyBuffer_GetContiguous(), so they are not caught by
# the test for C-contiguity in memory_cast().
items
=
[
1
,
2
,
3
]
for
shape
in
([
0
,
3
,
3
],
[
3
,
0
,
3
],
[
0
,
3
,
3
]):
ex
=
ndarray
(
items
,
shape
=
shape
)
self
.
assertTrue
(
ex
.
c_contiguous
)
msrc
=
memoryview
(
ex
)
self
.
assertRaises
(
TypeError
,
msrc
.
cast
,
'c'
)
# Monodimensional empty view can be cast (issue #19014).
for
fmt
,
_
,
_
in
iter_format
(
1
,
'memoryview'
):
msrc
=
memoryview
(
b
''
)
m
=
msrc
.
cast
(
fmt
)
self
.
assertEqual
(
m
.
tobytes
(),
b
''
)
self
.
assertEqual
(
m
.
tolist
(),
[])
def
test_memoryview_struct_module
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
60b18340
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
- Issue #19014: memoryview.cast() is now allowed on zero-length views.
- Issue #19098: Prevent overflow in the compiler when the recursion limit is set
absurdly high.
...
...
Objects/memoryobject.c
Dosyayı görüntüle @
60b18340
...
...
@@ -1330,7 +1330,7 @@ memory_cast(PyMemoryViewObject *self, PyObject *args, PyObject *kwds)
"memoryview: casts are restricted to C-contiguous views"
);
return
NULL
;
}
if
(
zero_in_shape
(
self
))
{
if
(
(
shape
||
self
->
view
.
ndim
!=
1
)
&&
zero_in_shape
(
self
))
{
PyErr_SetString
(
PyExc_TypeError
,
"memoryview: cannot cast view with zeros in shape or strides"
);
return
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