Skip to content
New issue

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

Custom unpickler and pickler for the shelve module #99631

Open
furkanonder opened this issue Nov 20, 2022 · 0 comments
Open

Custom unpickler and pickler for the shelve module #99631

furkanonder opened this issue Nov 20, 2022 · 0 comments
Assignees
Labels
stdlib Python modules in the Lib dir type-feature A feature request or enhancement

Comments

@furkanonder
Copy link
Contributor

furkanonder commented Nov 20, 2022

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.

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

Previous discussion

Linked PRs

@furkanonder furkanonder added the type-feature A feature request or enhancement label Nov 20, 2022
@iritkatriel iritkatriel added the stdlib Python modules in the Lib dir label Nov 28, 2023
@furkanonder furkanonder self-assigned this Apr 21, 2024
@furkanonder furkanonder added the 3.13 bugs and security fixes label Apr 21, 2024
@furkanonder furkanonder added 3.14 new features, bugs and security fixes and removed 3.13 bugs and security fixes labels Mar 22, 2025
@picnixz picnixz removed the 3.14 new features, bugs and security fixes label Mar 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stdlib Python modules in the Lib dir type-feature A feature request or enhancement
Projects
None yet
Development

No branches or pull requests

3 participants