diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-16 10:52:53 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-16 10:52:53 (GMT) |
commit | b3fe704a4af38585c1b7b061d08d720e5fc96225 (patch) | |
tree | 5bbe7759cd019aec573770df9b0cd1f92ccc079c | |
parent | f4e5044638a4b5a8b6a14c479e32a2721740eb0d (diff) | |
parent | 2bfe386091f3d402d6b8ced9355a0b45f1e12d08 (diff) | |
download | cpython-b3fe704a4af38585c1b7b061d08d720e5fc96225.zip cpython-b3fe704a4af38585c1b7b061d08d720e5fc96225.tar.gz cpython-b3fe704a4af38585c1b7b061d08d720e5fc96225.tar.bz2 |
Merge issue #15936: Reformat text for os.random to follow Larry Hastings suggestion
-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 45d0a0f..0a4723b 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`. |