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 vstinner
Recipients mark.dickinson, pitrou, rhettinger, serhiy.storchaka, tim.peters, vstinner
Date 2020-04-24.09:29:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1587720572.49.0.544151218189.issue40346@roundup.psfhosted.org>
In-reply-to
Content
I created this issue to address Raymond's comment:
"The randbytes() method needs to depend on genrandbits()."
https://bugs.python.org/issue40286#msg366860

I wrote PR 19700 to address that and only that.

With PR 19700, Random subclasses get a randbytes() implementation which uses getrandbits().

*Maybe* we could do the same in Random subclasses for the random() method, so let's start with the simplest PR :-)

Let's fix the randbytes() issue first.
History
Date User Action Args
2020-04-24 09:29:32vstinnersetrecipients: + vstinner, tim.peters, rhettinger, mark.dickinson, pitrou, serhiy.storchaka
2020-04-24 09:29:32vstinnersetmessageid: <1587720572.49.0.544151218189.issue40346@roundup.psfhosted.org>
2020-04-24 09:29:32vstinnerlinkissue40346 messages
2020-04-24 09:29:32vstinnercreate