From ba41c6a1c3ed8b4f00703df8c9ed1d8ec73174c8 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 18 Nov 2011 13:41:58 +0200 Subject: [PATCH] #13426: fix typo in pickle doc. --- Doc/library/pickle.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 22165f9d24..4d417d2b1a 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -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. [#]_ -- 2.40.0