From a6fce19968cd39dfbc2684f97ca3184d9996f61e Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 16 Apr 2019 14:32:32 -0700 Subject: [PATCH] bpo-33783: Use proper class markup for random.Random docs (GH-7817) (GH-12859) Signed-off-by: Matthias Bussonnier (cherry picked from commit 31e8d69bfe7cf5d4ffe0967cb225d2a8a229cc97) Co-authored-by: Matthias Bussonnier --- Doc/library/random.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 7d051e185429..42979ffbe38e 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -310,6 +310,11 @@ be found in any statistics text. Alternative Generator --------------------- +.. class:: Random([seed]) + + Class that implements the default pseudo-random number generator used by the + :mod:`random` module. + .. class:: SystemRandom([seed]) Class that uses the :func:`os.urandom` function for generating random numbers -- 2.47.3