diff options
author | Anthony Shaw <anthony.p.shaw@gmail.com> | 2021-08-09 22:35:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 22:35:51 (GMT) |
commit | c5c5326d4799fe4ae566aff32ed3461af95859cc (patch) | |
tree | 0934aba73b94993d6cbefa5ad02ece7afce8b52b /Doc/library/shelve.rst | |
parent | 058fb35b57ca8c5063d16ec818e668b3babfea65 (diff) | |
download | cpython-c5c5326d4799fe4ae566aff32ed3461af95859cc.zip cpython-c5c5326d4799fe4ae566aff32ed3461af95859cc.tar.gz cpython-c5c5326d4799fe4ae566aff32ed3461af95859cc.tar.bz2 |
bpo-39498 Start linking the security warnings in the stdlib modules (GH-18272)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Doc/library/shelve.rst')
-rw-r--r-- | Doc/library/shelve.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst index 1031888..684f239 100644 --- a/Doc/library/shelve.rst +++ b/Doc/library/shelve.rst @@ -54,6 +54,8 @@ lots of shared sub-objects. The keys are ordinary strings. with shelve.open('spam') as db: db['eggs'] = 'eggs' +.. _shelve-security: + .. warning:: Because the :mod:`shelve` module is backed by :mod:`pickle`, it is insecure |