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",
"normalvariate",
"paretovariate",
"randbytes",
"randint",
"random",
"randrange",

View File

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