From f739e2131153a72c7f35878b5a8d4cbdf15bc764 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 31 Jan 2003 19:12:53 +0000 Subject: [PATCH] Claim PEP 307 for extensions to the pickle protocol. --- pep-0000.txt | 2 ++ pep-0307.txt | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 pep-0307.txt diff --git a/pep-0000.txt b/pep-0000.txt index 0538b35c5..aca58ac80 100644 --- a/pep-0000.txt +++ b/pep-0000.txt @@ -108,6 +108,7 @@ Index by Category S 304 Controlling Generation of Bytecode Files Montanaro I 305 CSV File API Montanaro, et al I 306 How to Change Python's Grammar Hudson + S 307 Extensions to the pickle protocol GvR, Peters Finished PEPs (done, implemented in CVS) @@ -304,6 +305,7 @@ Numerical Index S 304 Controlling Generation of Bytecode Files Montanaro I 305 CSV File API Montanaro, et al I 306 How to Change Python's Grammar Hudson + S 307 Extensions to the pickle protocol GvR, Peters SR 666 Reject Foolish Indentation Creighton diff --git a/pep-0307.txt b/pep-0307.txt new file mode 100644 index 000000000..4f616bb9d --- /dev/null +++ b/pep-0307.txt @@ -0,0 +1,34 @@ +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: