bpo-42931: randbytes missing from random.__all__ (GH-24219)

This commit is contained in:
Setrak Balian 2021-01-15 17:50:42 +00:00 committed by GitHub
parent ba876c44a8
commit 998ae1fa3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -78,6 +78,7 @@ __all__ = [
"lognormvariate", "lognormvariate",
"normalvariate", "normalvariate",
"paretovariate", "paretovariate",
"randbytes",
"randint", "randint",
"random", "random",
"randrange", "randrange",

View file

@ -0,0 +1 @@
Add :func:`randbytes` to ``random.__all__``.