We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please consider
from pyrobuf_list import Int64List data = Int64List() data.extend(range(10)) print(list(memoryview(data)))
On my machine above prints
[0, 72057594037927936, 281474976710656, 1099511627776, 4294967296, 16777216, 65536, 256, 1, 144115188075855872]
Python 3.7 (https://docs.python.org/3/library/array.html), the signed 64-bit int shall be represented by 'q' format, not 'L'. This was introduced in Python 3.3.
The text was updated successfully, but these errors were encountered:
Changing setup.py to use proper format character and setting strides to null in pyrobuf_list_pyx.tmp solves the issue.
setup.py
strides
pyrobuf_list_pyx.tmp
Sorry, something went wrong.
No branches or pull requests
Please consider
On my machine above prints
Python 3.7 (https://docs.python.org/3/library/array.html), the signed 64-bit int shall be represented by 'q' format, not 'L'. This was introduced in Python 3.3.
The text was updated successfully, but these errors were encountered: