mirror of
https://github.com/kennethreitz/dive-into-python3.git
synced 2026-06-05 23:10:17 +00:00
link to serializing chapter, fix typo
This commit is contained in:
@@ -674,7 +674,7 @@ class FieldStorage:
|
||||
<h2 id=pickle>Classes That Can Be Serialized</h2>
|
||||
<!--see http://docs.python.org/3.1/library/pickle.html:-->
|
||||
|
||||
<p>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 <a href=native-datatypes.html>native datatypes</a> support pickling already. If you create a custom class that you to be able to pickle, read up on <a href=http://docs.python.org/3.1/library/pickle.html>the pickle protocol</a> to see when and how the following special methods are called.
|
||||
<p>Python supports <a href=serializing.html>serializing and unserializing arbitrary objects</a>. (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 <a href=native-datatypes.html>native datatypes</a> support pickling already. If you create a custom class that you want to be able to pickle, read up on <a href=http://docs.python.org/3.1/library/pickle.html>the pickle protocol</a> to see when and how the following special methods are called.
|
||||
|
||||
<table>
|
||||
<tr><th>Notes
|
||||
|
||||
Reference in New Issue
Block a user