This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zooko
Recipients zooko
Date 2010-06-30.03:49:26
SpamBayes Score 0.009162651
Marked as misclassified No
Message-id <1277869768.11.0.314116783552.issue9123@psf.upfronthosting.co.za>
In-reply-to
Content
HACK Zooko-Ofsimplegeos-MacBook-Pro:~/playground/python/release27-trunk$ svn diff
Index: Modules/posixmodule.c
===================================================================
--- Modules/posixmodule.c       (revision 82382)
+++ Modules/posixmodule.c       (working copy)
@@ -8481,7 +8481,7 @@
     result = PyString_FromStringAndSize(NULL, howMany);
     if (result != NULL) {
         /* Get random data */
-        if (RAND_pseudo_bytes((unsigned char*)
+        if (RAND_bytes((unsigned char*)
                               PyString_AS_STRING(result),
                               howMany) < 0) {
             Py_DECREF(result);
History
Date User Action Args
2010-06-30 03:49:28zookosetrecipients: + zooko
2010-06-30 03:49:28zookosetmessageid: <1277869768.11.0.314116783552.issue9123@psf.upfronthosting.co.za>
2010-06-30 03:49:26zookolinkissue9123 messages
2010-06-30 03:49:26zookocreate