1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Source: zodbpickle
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Julien Muchembled <jm@jmuchemb.eu>
Section: python
Priority: optional
Build-Depends: debhelper (>= 11), dh-python,
python-setuptools, python-all-dev,
python3-setuptools, python3-all-dev,
pypy-setuptools, pypy,
Standards-Version: 4.1.3
Homepage: https://github.com/zopefoundation/zodbpickle
Vcs-Git: https://salsa.debian.org/python-team/modules/zodbpickle.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/zodbpickle
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.3
Package: python-zodbpickle
Architecture: any
Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
Provides: ${python:Provides}
Description: Fork of pickle module for uniform serialization between Python 2 and 3 (Py2)
This package forks both Python 2.7's pickle and cPickle modules for ZODB,
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 Python 3.
Package: python3-zodbpickle
Architecture: any
Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
Provides: ${python3:Provides}
Description: Fork of pickle module for uniform serialization between Python 2 and 3 (Py3)
This package forks the pickle module (and the supporting C extension)
from both Python 3.2 and Python 3.3. The fork adds support for the
noload operations used by ZODB.
Package: pypy-zodbpickle
Architecture: all
Depends: ${misc:Depends}, ${pypy:Depends}
Description: Fork of pickle module for uniform serialization between Python 2 and 3 (PyPy)
This package forks both Python 2.7's pickle and cPickle modules for ZODB,
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 Python 3.
|