From: Andrew Svetlov Date: Tue, 16 Oct 2012 10:15:06 +0000 (+0300) Subject: Issue #15936: Add link from os.urandom to random.SystemRandom X-Git-Tag: v3.3.1rc1~798 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=03cb99c2d11da44304e67281f3e2e87b1cc17254;p=thirdparty%2FPython%2Fcpython.git Issue #15936: Add link from os.urandom to random.SystemRandom --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index bf6087e8a4ef..d859a97c35e5 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3309,3 +3309,6 @@ Miscellaneous Functions though its exact quality depends on the OS implementation. On a Unix-like 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`.