[Python-checkins] cpython (2.7): #13426: fix typo in pickle doc.

ezio.melotti python-checkins at python.org
Fri Nov 18 12:52:53 CET 2011


http://hg.python.org/cpython/rev/ce34e9223450
changeset:   73602:ce34e9223450
branch:      2.7
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri Nov 18 13:41:58 2011 +0200
summary:
  #13426: fix typo in pickle doc.

files:
  Doc/library/pickle.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -364,7 +364,7 @@
 
 Note that functions (built-in and user-defined) are pickled by "fully qualified"
 name reference, not by value.  This means that only the function name is
-pickled, along with the name of module the function is defined in.  Neither the
+pickled, along with the name of the module the function is defined in.  Neither the
 function's code, nor any of its function attributes are pickled.  Thus the
 defining module must be importable in the unpickling environment, and the module
 must contain the named object, otherwise an exception will be raised. [#]_

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list