1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/databases/py-zodbpickle/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

9 lines
550 B
Plaintext

zodbpickle 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.