We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python
Learn more about funding links in repositories.
Report abuse
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
The goal of this enhancement is to make the shelve module more usable by accepting custom types of pickler and unpickler.
The lambda functions can not be pickled by Python's pickle module. So, for that reason the shelve library also can’t do that.
The shelve module was unable to handle this situation.
import shelve with shelve.open("test_file") as sh: squared = lambda x: x ** 2 sh['test_key'] = squared
With the changes made here, the shelve module can easily overcome this issue.
import dill import shelve with shelve.open("test_file_2", pickler=dill.Pickler, unpickler=dill.Unpickler) as sh: squared = lambda x: x ** 2 sh['test_key'] = squared
The text was updated successfully, but these errors were encountered:
furkanonder
No branches or pull requests
The goal of this enhancement is to make the shelve module more usable by accepting custom types of pickler and unpickler.
Example
The lambda functions can not be pickled by Python's pickle module. So, for that reason the shelve library also can’t do that.
The shelve module was unable to handle this situation.
With the changes made here, the shelve module can easily overcome this issue.
Previous discussion
Linked PRs
The text was updated successfully, but these errors were encountered: