Documentation
The documentation for random.Random really only discusses the member functions subclasses should override. However, it never mentions, nor documents, the functions that the class provides. For example, Random.randint exists; is it supported by Python to call that? (E.g., is random.SystemRandom().randint(…) a supported call?
If so … could these be documented?
Documentation
The documentation for
random.Randomreally only discusses the member functions subclasses should override. However, it never mentions, nor documents, the functions that the class provides. For example,Random.randintexists; is it supported by Python to call that? (E.g., israndom.SystemRandom().randint(…)a supported call?If so … could these be documented?