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
An easy test case that shows something is wrong here.
>>> m = {'a': {'b': 'c'}} >>> m = munch.munchify(m) >>> m Munch({'a': Munch({'b': 'c'})}) >>> e = munch.munchify(m) >>> pickle.loads(pickle.dumps(e)) Munch({'a': {'b': 'c'}})
I did not expect to lose information when using pickle; but it appears it does.
The text was updated successfully, but these errors were encountered:
@sayag11 I'm already on it. A fix will be available soon
Sorry, something went wrong.
4dafe9d
Fixed and pushed v2.3.1. Should be available on Pypi soon.
@harlowja thanks for reporting!
vmalloc
No branches or pull requests
An easy test case that shows something is wrong here.
I did not expect to lose information when using pickle; but it appears it does.
The text was updated successfully, but these errors were encountered: