marlanbar
marlanbar

Reputation: 167

Serialization protocol options in Python Shelve

Which are the protocols I can use in the shelve module of Python besides Pickle? What are the differences between them?

Upvotes: 1

Views: 338

Answers (1)

Erik Kaplun
Erik Kaplun

Reputation: 38217

Deciding by http://docs.python.org/2/library/shelve.html, shelve only works with pickle; the protocol parameter simply seems to specify the pickle version.

Upvotes: 3

Related Questions