[Python-checkins] cpython (3.4): tighten warning

benjamin.peterson python-checkins at python.org
Mon Jul 6 16:41:40 CEST 2015


https://hg.python.org/cpython/rev/94e0b89591ff
changeset:   96852:94e0b89591ff
branch:      3.4
parent:      96849:389795b7c703
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Jul 06 09:40:43 2015 -0500
summary:
  tighten warning

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


diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -26,9 +26,9 @@
 
 .. 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

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


More information about the Python-checkins mailing list