slackbuilds/python/python3-zodbpickle
Arn0 976f7315c3
python/python3-zodbpickle: updated for version 3.3
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-04-19 21:34:46 +07:00
..
README
python3-zodbpickle.SlackBuild python/python3-zodbpickle: updated for version 3.3 2024-04-19 21:34:46 +07:00
python3-zodbpickle.info python/python3-zodbpickle: updated for version 3.3 2024-04-19 21:34:46 +07:00
slack-desc

README

zodbpickle: Fork of Python 3 pickle module.

This package presents a uniform pickling interface for ZODB:

- Under Python2, this package forks both Python 2.7's ``pickle`` and
  ``cPickle`` modules, adding support for the ``protocol 3`` opcodes.
  It also provides a new subclass of ``bytes``, ``zodbpickle.binary``,
  which Python2 applications can use to pickle binary values such that
  they will be unpickled as ``bytes`` under Py3k.

- Under Py3k, this package forks the ``pickle`` module (and the
  supporting C extension) from both Python 3.2 and Python 3.3.
  The fork add support for the ``noload`` operations used by ZODB.