-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
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
to_bytes_packed() non-deterministic behavior in python3.6 #191
Comments
Do you have an example of what's different? |
Note https://github.com/capnproto/pycapnp/blob/2e6d7be/setup.py#L232 says Python 3.6 isnt supported, and CI only builds py3.7-3.9. https://github.com/capnproto/pycapnp/blob/master/tox.ini completely disagrees. |
As a note, I myself haven't used tox at all with pycapnp (i.e. needs to be cleaned up). |
I tried using py36, and the asyncio bits fail badly. |
This looks to be the same underlying problem as #189 |
In python3.6, when serializing to a bytestream using to_bytes_packed(), the resulting bytestream differs from the previous bytestream when using the exact same input.
In python2, the bytestream does not differ from the previous bytestream while using the exact same input.
This was observed by comparing the lengths of the resulting bytestreams.
Is this an intended functionality for the to_bytes_packed() method in python3.6?
The text was updated successfully, but these errors were encountered: