diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-16 10:52:25 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-16 10:52:25 (GMT) |
commit | 2bfe386091f3d402d6b8ced9355a0b45f1e12d08 (patch) | |
tree | 136baf187852942e8833678063bf9f65b00e3e33 /Doc | |
parent | 03cb99c2d11da44304e67281f3e2e87b1cc17254 (diff) | |
download | cpython-2bfe386091f3d402d6b8ced9355a0b45f1e12d08.zip cpython-2bfe386091f3d402d6b8ced9355a0b45f1e12d08.tar.gz cpython-2bfe386091f3d402d6b8ced9355a0b45f1e12d08.tar.bz2 |
Issue #15936: Reformat text for os.random to follow Larry Hastings suggestion
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index d859a97..2e45de2 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3310,5 +3310,5 @@ Miscellaneous Functions system this will query /dev/urandom, and on Windows it will use CryptGenRandom. If a randomness source is not found, :exc:`NotImplementedError` will be raised. - For easy to use interface to system randomness please see - :class:`random.SystemRandom`. + For an easy-to-use interface to the random number generator + provided by your platform, please see :class:`random.SystemRandom`. |