diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-25 11:13:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-25 11:13:55 (GMT) |
commit | c58140c55798f77bd003ae48b1cf50daf1727f66 (patch) | |
tree | ee148dcca7363c233f5ba1f3965187cc02683b4c /Doc/library/random.rst | |
parent | a675206366435432118e443090d3e08613db6679 (diff) | |
download | cpython-c58140c55798f77bd003ae48b1cf50daf1727f66.zip cpython-c58140c55798f77bd003ae48b1cf50daf1727f66.tar.gz cpython-c58140c55798f77bd003ae48b1cf50daf1727f66.tar.bz2 |
Issue #12049: cleanup the warning in the random module doc
Diffstat (limited to 'Doc/library/random.rst')
-rw-r--r-- | Doc/library/random.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 52419a1..3040411 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -46,8 +46,8 @@ from sources provided by the operating system. .. warning:: The generators of the :mod:`random` module should not be used for security - purposes, they are not cryptographic. Use :func:`ssl.RAND_bytes` if you - require a cryptographically secure pseudorandom number generator. + purposes. Use :func:`ssl.RAND_bytes` if you require a cryptographically + secure pseudorandom number generator. Bookkeeping functions: |