Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
4ca48474
Commit
4ca48474
authored
Nov 01, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
46cc2008
60fd64bb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
1 deletion
+42
-1
CHANGES.rst
CHANGES.rst
+4
-0
Cython/Utility/MemoryView.pyx
Cython/Utility/MemoryView.pyx
+1
-1
tests/memoryview/memoryview.pyx
tests/memoryview/memoryview.pyx
+37
-0
No files found.
CHANGES.rst
View file @
4ca48474
...
...
@@ -32,6 +32,10 @@ Bugs fixed
objects
larger
than
15
bit
and
return
incorrect
results
.
(
Github
issue
#
2670
)
*
Cython
no
longer
requires
the
source
to
be
writable
when
copying
its
data
into
a
memory
view
slice
.
Patch
by
Andrey
Paramonov
.
(
Github
issue
#
2644
)
*
Line
tracing
of
``
try
``-
statements
generated
invalid
C
code
.
(
Github
issue
#
2274
)
...
...
Cython/Utility/MemoryView.pyx
View file @
4ca48474
...
...
@@ -426,7 +426,7 @@ cdef class memoryview(object):
cdef
is_slice
(
self
,
obj
):
if
not
isinstance
(
obj
,
memoryview
):
try
:
obj
=
memoryview
(
obj
,
self
.
flags
|
PyBUF_ANY_CONTIGUOUS
,
obj
=
memoryview
(
obj
,
self
.
flags
&
~
PyBUF_WRITABLE
|
PyBUF_ANY_CONTIGUOUS
,
self
.
dtype_is_object
)
except
TypeError
:
return
None
...
...
tests/memoryview/memoryview.pyx
View file @
4ca48474
...
...
@@ -14,6 +14,9 @@ from cpython.object cimport PyObject
from
cpython.ref
cimport
Py_INCREF
,
Py_DECREF
cimport
cython
import
array
as
pyarray
from
libc.stdlib
cimport
malloc
,
free
cdef
extern
from
"Python.h"
:
cdef
int
PyBUF_C_CONTIGUOUS
...
...
@@ -1083,3 +1086,37 @@ def optimised_index_of_slice(int[:,:,:] arr, int x, int y, int z):
print
(
arr
[
x
,
y
,
z
],
arr
[
x
][:][:][
y
][:][:][
z
])
print
(
arr
[
x
,
y
,
z
],
arr
[:][
x
][:][
y
][:][:][
z
])
print
(
arr
[
x
,
y
,
z
],
arr
[:,
:][
x
][:,
:][
y
][:][
z
])
def
test_assign_from_byteslike
(
byteslike
):
# Once http://python3statement.org is accepted, should be just
# >>> test_assign_from_byteslike(bytes(b'hello'))
# b'hello'
# ...
"""
>>> print(test_assign_from_byteslike(bytes(b'hello')).decode())
hello
>>> print(test_assign_from_byteslike(bytearray(b'howdy')).decode())
howdy
"""
# fails on Python 2.7- with
# TypeError: an integer is required
# >>> print(test_assign_from_byteslike(pyarray.array('B', b'aloha')).decode())
# aloha
# fails on Python 2.6- with
# NameError: name 'memoryview' is not defined
# >>> print(test_assign_from_byteslike(memoryview(b'bye!!')).decode())
# bye!!
def
assign
(
m
):
m
[:]
=
byteslike
cdef
void
*
buf
cdef
unsigned
char
[:]
mview
buf
=
malloc
(
5
)
try
:
mview
=
<
unsigned
char
[:
5
]
>
(
buf
)
assign
(
mview
)
return
(
<
unsigned
char
*>
buf
)[:
5
]
finally
:
free
(
buf
)
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