-
since c struct are contiguous in memory - have them implement the memoryview interface. That way we can use them with Fiddle::MemoryView
-
When having `sys.stderr.buffer.write(memoryview(b'test\n'))` in a WSGI script, it fails with “TypeError: write() argument 1 must be read-only bytes-like object, not memoryview”.
On mod_wsgi, `sys.s…
-
On a PyBoard v1.1 with firmware 1.13, put the following code into a file:
import micropython
@micropython.viper
def take_memoryview_slice():
ba = bytearray(10)
m…
-
### Describe the bug
Currently there are explicit checks for explicit types in boto3, for example:
`botocore/validate.py`:
```python
def _validate_blob(self, param, shape, errors, name):
…
-
### Describe the bug, including details regarding any error messages, version, and platform.
pyarrow seems to be applying some upcasting when importing data via the buffer protocol. This was unexpe…
-
# Bug report
### Bug description:
Calling `PyObject_GetBuffer()` with the `PyBUF_FORMAT` flag on a memoryview object that wraps a bytes object fails with the exception:
`BufferError: memoryview: ca…
-
cython uses typed memoryviews for direct access to underlying c objects that implement a buffer protocol. Add something similar so that we can declare memoryviews on numo::narray , narray, and other…
-
For communication between gym and ns3, I installed the ns3-ai.
but, during the process of ns3 building, the below error was occurred in spite of the installed pybind11 via apt-get.
I have solve…
-
It is difficult to perform I2C reads of variable length data in an interrupt context. I tried pre-allocating a buffer, creating a **memoryview**, and issuing
```python
i2c.readfrom_into(addr, mv[0 :…
-
Hello
I try to implement a celery protocol client based on kombu.
When the result content_type is yaml, kombu throws an error:
```Traceback (most recent call last):
File "/usr/local/lib/python3.…