35 lines
719 B
Plaintext
35 lines
719 B
Plaintext
|
PEP: 307
|
|||
|
Title: Extensions to the pickle protocol
|
|||
|
Version: $Revision$
|
|||
|
Last-Modified: $Date$
|
|||
|
Author: Guido van Rossum, Tim Peters
|
|||
|
Status: Active
|
|||
|
Type: Standards Track
|
|||
|
Content-Type: text/plain
|
|||
|
Created: 31-Jan-2003
|
|||
|
Post-History: None
|
|||
|
|
|||
|
|
|||
|
Introduction
|
|||
|
|
|||
|
Pickling new-style objects in Python 2.2 is done somewhat clumsily
|
|||
|
and causes pickle size to bloat compared to classic class
|
|||
|
instances. This PEP documents a new pickle protocol that takes
|
|||
|
care of this and many other pickling issues.
|
|||
|
|
|||
|
(XXX The rest of this PEP is TBD.)
|
|||
|
|
|||
|
|
|||
|
Copyright
|
|||
|
|
|||
|
This document has been placed in the public domain.
|
|||
|
|
|||
|
|
|||
|
|
|||
|
Local Variables:
|
|||
|
mode: indented-text
|
|||
|
indent-tabs-mode: nil
|
|||
|
sentence-end-double-space: t
|
|||
|
fill-column: 70
|
|||
|
End:
|