dill-0.3.7
dill 0.3.7 Release Notes
With dill
, you can serialize almost anything in python, even an entire interpreter session. If you encounter any pickling failures, dill
also has some good tools to help you discover why your object fails to pickle.
dill
installs with pip
:
$ pip install dill
dill
requires:
- python or pypy, >=3.7
Optional requirements:
- pyreadline, >=1.7.1
(install with $ pip install dill[readline]
)
- objgraph, >=1.7.2
(install with $ pip install dill[graph]
)
dill
is licensed under 3-clause BSD:
>>> import dill
>>> print (dill.license())
To cite dill
:
>>> import dill
>>> print (dill.citation())
What's Changed
- Fix _is_builtin_module by @charmoniumQ in #567
- minor changes from PR #554 by @mmckerns in #573
- align LICENSE wording with BSD-3-Clause by @mtelka in #574
- Python 3 Metaclasses [Support ABC and Enums - Part 1] by @anivegesana in #577
- Abstract Base Classes [Support ABC and Enums - Part 2] by @anivegesana in #580
- fix typo by @uniontech-lilinjie in #587
- Bump requests from 2.27.1 to 2.31.0 in /docs by @dependabot in #596
- Fixed crashed in _dill._is_builtin_module when a module's file is None by @miguelinux314 in #598
- Bump pygments from 2.11.2 to 2.15.0 in /docs by @dependabot in #605
New Contributors
- @charmoniumQ made their first contribution in #567
- @mtelka made their first contribution in #574
- @uniontech-lilinjie made their first contribution in #587
- @dependabot made their first contribution in #596
- @miguelinux314 made their first contribution in #598
Full Changelog: dill-0.3.6...dill-0.3.7