Add link to CPython random module

This commit is contained in:
Alec Delaney 2022-05-03 13:59:13 -04:00 committed by GitHub
parent 664a92c2df
commit 5bd8fa6842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,11 @@
//| Once seeded, it will be deterministic, which is why its bad for cryptography. //| Once seeded, it will be deterministic, which is why its bad for cryptography.
//| //|
//| .. warning:: Numbers from this module are not cryptographically strong! Use //| .. warning:: Numbers from this module are not cryptographically strong! Use
//| bytes from `os.urandom` directly for true randomness.""" //| bytes from `os.urandom` directly for true randomness.
//|
//| For more information about the `random` module, see the CPython documentation:
//| https://docs.python.org/3/library/random.html
//| """
//| //|
//| from typing import TypeVar //| from typing import TypeVar
//| _T = TypeVar('_T') //| _T = TypeVar('_T')