You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something about the internals rehash uses seems to have changed in python 3.8.0. This is using the "python:slim" docker image:
Python 3.8.0 (default, Oct 17 2019, 05:48:34)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import rehash, pickle
>>> hasher = rehash.sha256()
>>> pickle.dumps(hasher)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.8/site-packages/rehash/__init__.py", line 52, in __getstate__
ctx = self._get_evp_md_ctx()
File "/usr/local/lib/python3.8/site-packages/rehash/__init__.py", line 46, in _get_evp_md_ctx
if hasattr(c_evp_obj.contents.ctx, "contents"):
ValueError: NULL pointer access
The text was updated successfully, but these errors were encountered:
Something about the internals rehash uses seems to have changed in python 3.8.0. This is using the "python:slim" docker image:
The text was updated successfully, but these errors were encountered: