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
Every key after 17 is not able to be deleted on the mutate context manager, but they are in the mapping. I would expect mutate to be able to delete everything.
Is that expectation correct?
Tested on windows:
Python 3.7.3 (default, Apr 24 2019, 15:29:51) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32
>>> import immutables
>>> immutables.__version__
'0.11'
ubuntu WSL
Python 3.8.2 (default, Mar 26 2020, 15:53:00)
[GCC 7.3.0] :: Anaconda, Inc. on linux
>>> import immutables
>>> immutables.__version__
'0.11'
The text was updated successfully, but these errors were encountered:
Hi, first of all thanks for this package!
I've found very useful the ability to hash immutable mappings.
Recently I came across a very strange issue and I can not tell why it's happening. I was able to reproduce it with this snippet:
Every key after 17 is not able to be deleted on the
mutate
context manager, but they are in the mapping. I would expect mutate to be able to delete everything.Is that expectation correct?
Tested on windows:
ubuntu WSL
The text was updated successfully, but these errors were encountered: