summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-07-06 14:40:43 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-07-06 14:40:43 (GMT)
commitb8fd26256ec712e0d0ede8cbf5697780fbc641a6 (patch)
tree7bdf316642fc559a37813e511ebe4d8db5b38c58 /Doc
parent03d6ee382340dc1db57d7bbc269de0e102ed1a7a (diff)
downloadcpython-b8fd26256ec712e0d0ede8cbf5697780fbc641a6.zip
cpython-b8fd26256ec712e0d0ede8cbf5697780fbc641a6.tar.gz
cpython-b8fd26256ec712e0d0ede8cbf5697780fbc641a6.tar.bz2
tighten warning
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/pickle.rst6
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