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
.socket_free is a dict that uses a socket as a key. To enable this, __hash__() was added to the native Socket class. However, the hash value used is not immutable: adafruit/circuitpython#4101.
The hash function could be fixed, or perhaps the use of a dict that needs to use sockets as a key could be revisited here.
.socket_free
is a dict that uses a socket as a key. To enable this,__hash__()
was added to the nativeSocket
class. However, the hash value used is not immutable: adafruit/circuitpython#4101.The hash function could be fixed, or perhaps the use of a dict that needs to use sockets as a key could be revisited here.
Encountered while debugging adafruit/circuitpython#4061 with @hierophect.
The text was updated successfully, but these errors were encountered: