We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664a92c commit 5bd8fa6Copy full SHA for 5bd8fa6
shared-bindings/random/__init__.c
@@ -44,7 +44,11 @@
44
//| Once seeded, it will be deterministic, which is why its bad for cryptography.
45
//|
46
//| .. warning:: Numbers from this module are not cryptographically strong! Use
47
-//| bytes from `os.urandom` directly for true randomness."""
+//| 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
+//| """
52
53
//| from typing import TypeVar
54
//| _T = TypeVar('_T')
0 commit comments