aboutsummaryrefslogtreecommitdiff
path: root/python/python3-zodbpickle/README
diff options
context:
space:
mode:
authorYth - Arnaud <yth@ythogtha.org>2023-07-08 08:50:00 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-07-08 08:50:00 +0700
commit6b55f3f69212bc7da4cc7a45ce0f4346dbbbd9e8 (patch)
treef477989d85d7b70ed55bb2813db55aa7b393d9cc /python/python3-zodbpickle/README
parent34fa031e54d37aa6f539ffa09914ed350646b938 (diff)
python/python3-zodbpickle: Added (Fork of Python 3 pickle module).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-zodbpickle/README')
-rw-r--r--python/python3-zodbpickle/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/python/python3-zodbpickle/README b/python/python3-zodbpickle/README
new file mode 100644
index 0000000000..e3931221ea
--- /dev/null
+++ b/python/python3-zodbpickle/README
@@ -0,0 +1,13 @@
+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.