From 35cd2159483eac5c77eddf99a90c368bbc54b675 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Wed, 23 Sep 2009 08:59:17 -0400 Subject: [PATCH] link to serializing chapter, fix typo --- special-method-names.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/special-method-names.html b/special-method-names.html index ed33a85..14ff127 100644 --- a/special-method-names.html +++ b/special-method-names.html @@ -674,7 +674,7 @@ class FieldStorage:

Classes That Can Be Serialized

-

Python supports serializing and unserializing arbitrary objects. (Most Python references call this process “pickling” and “unpickling.”) This can be useful for saving state to a file and restoring it later. All of the native datatypes support pickling already. If you create a custom class that you to be able to pickle, read up on the pickle protocol to see when and how the following special methods are called. +

Python supports serializing and unserializing arbitrary objects. (Most Python references call this process “pickling” and “unpickling.”) This can be useful for saving state to a file and restoring it later. All of the native datatypes support pickling already. If you create a custom class that you want to be able to pickle, read up on the pickle protocol to see when and how the following special methods are called.
Notes