]> granicus.if.org Git - python/commitdiff
#13426: fix typo in pickle doc.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 18 Nov 2011 11:41:58 +0000 (13:41 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 18 Nov 2011 11:41:58 +0000 (13:41 +0200)
Doc/library/pickle.rst

index 22165f9d24c86f89292271907168d62d39026f4f..4d417d2b1a42666cb646de7ab68923f32f8fac5f 100644 (file)
@@ -364,7 +364,7 @@ raised in this case. You can carefully raise this limit with
 
 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. [#]_