diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-07-06 14:40:43 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-07-06 14:40:43 (GMT) |
commit | b8fd26256ec712e0d0ede8cbf5697780fbc641a6 (patch) | |
tree | 7bdf316642fc559a37813e511ebe4d8db5b38c58 | |
parent | 03d6ee382340dc1db57d7bbc269de0e102ed1a7a (diff) | |
download | cpython-b8fd26256ec712e0d0ede8cbf5697780fbc641a6.zip cpython-b8fd26256ec712e0d0ede8cbf5697780fbc641a6.tar.gz cpython-b8fd26256ec712e0d0ede8cbf5697780fbc641a6.tar.bz2 |
tighten warning
-rw-r--r-- | Doc/library/pickle.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 47356f9..ab43c64 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -26,9 +26,9 @@ avoid confusion, the terms used here are "pickling" and "unpickling". .. warning:: - The :mod:`pickle` module is not intended to be secure against erroneous or - maliciously constructed data. Never unpickle data received from an untrusted - or unauthenticated source. + The :mod:`pickle` module is secure against erroneous or maliciously + constructed data. Never unpickle data received from an untrusted or + unauthenticated source. Relationship to other Python modules |