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 | 678e7a90809c713c1cb50e71e2ad2d785cea2bf6 (patch) | |
tree | 6f1caae6c066ad4a9da43e4d84d5539e6a0db80a /Doc | |
parent | 7865f218b4448857903d2fd880b23d19d89982b4 (diff) | |
download | cpython-678e7a90809c713c1cb50e71e2ad2d785cea2bf6.zip cpython-678e7a90809c713c1cb50e71e2ad2d785cea2bf6.tar.gz cpython-678e7a90809c713c1cb50e71e2ad2d785cea2bf6.tar.bz2 |
tighten warning
Diffstat (limited to 'Doc')
-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 a42eabc..410a630 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -27,9 +27,9 @@ This documentation describes both the :mod:`pickle` module and the .. 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 |