Skip to content

Commit 5bd8fa6

Browse files
authored
Add link to CPython random module
1 parent 664a92c commit 5bd8fa6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

shared-bindings/random/__init__.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@
4444
//| Once seeded, it will be deterministic, which is why its bad for cryptography.
4545
//|
4646
//| .. warning:: Numbers from this module are not cryptographically strong! Use
47-
//| bytes from `os.urandom` directly for true randomness."""
47+
//| bytes from `os.urandom` directly for true randomness.
48+
//|
49+
//| For more information about the `random` module, see the CPython documentation:
50+
//| https://docs.python.org/3/library/random.html
51+
//| """
4852
//|
4953
//| from typing import TypeVar
5054
//| _T = TypeVar('_T')

0 commit comments

Comments
 (0)