Lines Matching refs:memoryview
26 where :class:`memoryview` objects can be constructed from arrays, too.
40 :class:`memoryview`.
43 :class:`memoryview` object has been backported to Python 2.7. It is strongly
300 A :class:`memoryview` object exposes the new C level buffer interface as a
305 Create a memoryview object from an object that defines the new buffer
311 Create a memoryview object wrapping the given buffer-info structure *view*.
312 The memoryview object then owns the buffer, which means you shouldn't
314 memoryview object.
319 Create a memoryview object to a contiguous chunk of memory (in either
321 interface. If memory is contiguous, the memoryview object points to the
322 original memory. Otherwise copy is made and the memoryview points to a
328 Return true if the object *obj* is a memoryview object. It is not
329 currently allowed to create subclasses of :class:`memoryview`.
335 object. The object **must** be a memoryview instance; this macro doesn't