Register   Login   About   Study   Enterprise   Share
Internet / AI Technology University (ITU/AITU)
Fast Login - available after registration







|

Top Links: >> 80. Technology >> Internet Technology Summit Program >> 9. AI with Python >> 9.1. The Python Tutorial Introduction >> 9.1.1. Python Docs, Lexicon, and Components >> 9.1.1.3. Python Internals
Current Topic: 9.1.1.3.44. MemoryView objects
You have a privilege to create a quiz (QnA) related to this subject and obtain creativity score...

A memoryview object exposes the C level buffer interface as a Python object which can then be passed around like any other object.




PyObject *
PyMemoryView_FromObject
(
PyObject
 *obj
)



Return value: New reference.

Create a memoryview object from an object that provides the buffer interface. If obj supports writable buffer exports, the memoryview object will be read/write, otherwise it may be either read-only or read/write at the discretion of the exporter.






PyObject *
PyMemoryView_FromMemory
(char
 *mem, Py_ssize_t
 size, int
 flags
)



Return value: New reference.

Create a memoryview object using mem as the underlying buffer. flags can be one of PyBUF_READ or PyBUF_WRITE.



New in version 3.3.







PyObject *
PyMemoryView_FromBuffer
(
Py_buffer
 *view
)



Return value: New reference.

Create a memoryview object wrapping the given buffer structure view. For simple byte buffers, PyMemoryView_FromMemory() is the preferred function.






PyObject *
PyMemoryView_GetContiguous
(
PyObject
Was it clear so far?

 *obj, int
 buffertype, char
 order
)



Return value: New reference.

Create a memoryview object to a contiguous chunk of memory (in either ?C? or ?F?ortran order) from an object that defines the buffer interface. If memory is contiguous, the memoryview object points to the original memory. Otherwise, a copy is made and the memoryview points to a new bytes object.






int
PyMemoryView_Check
(
PyObject
 *obj
)



Return true if the object obj is a memoryview object. It is not currently allowed to create subclasses of memoryview.






Py_buffer *
PyMemoryView_GET_BUFFER
(
PyObject
 *mview
)



Return a pointer to the memoryview's private copy of the exporter's buffer. mview must be a memoryview instance; this macro doesn?t check its type, you must do it yourself or you will risk crashes.






Py_buffer *
PyMemoryView_GET_BASE
(
PyObject
 *mview
)



Return either a pointer to the exporting object that the memoryview is based on or NULL if the memoryview has been created by one of the functions PyMemoryView_FromMemory() or PyMemoryView_FromBuffer(). mview must be a memoryview instance.








| Check Your Progress | Propose QnA | Have a question or comments for open discussion?

Have a suggestion? - shoot an email
Looking for something special? - Talk to me
Read: IT of the future: AI and Semantic Cloud Architecture | Fixing Education
Do you want to move from theory to practice and become a magician? Learn and work with us at Internet Technology University (ITU) - JavaSchool.com.

Technology that we offer and How this works: English | Spanish | Russian | French

Internet Technology University | JavaSchool.com | Copyrights © Since 1997 | All Rights Reserved
Patents: US10956676, US7032006, US7774751, US7966093, US8051026, US8863234
Including conversational semantic decision support systems (CSDS) and bringing us closer to The message from 2040
Privacy Policy