diff options
author | Raymond Hettinger <python@rcn.com> | 2004-08-30 06:14:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-08-30 06:14:31 (GMT) |
commit | 356a4599acd4c835ab88c221bd5da073c9895e83 (patch) | |
tree | 3929bfcd683de30940287e26e7d213bf74fb8db4 /Misc | |
parent | cd97da3b1d61be00bb06f3264a60418dbdb83bd8 (diff) | |
download | cpython-356a4599acd4c835ab88c221bd5da073c9895e83.zip cpython-356a4599acd4c835ab88c221bd5da073c9895e83.tar.gz cpython-356a4599acd4c835ab88c221bd5da073c9895e83.tar.bz2 |
Teach the random module about os.urandom().
* Use it for seeding when it is available.
* Provide an alternate generator based on it.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -79,6 +79,9 @@ Extension modules Library ------- +- the random module now uses os.urandom() for seeding if it is available. + Added a new generator based on os.urandom(). + - difflib and diff.py can now generate HTML. - bdist_rpm now includes version and release in the BuildRoot, and |