massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / Crypto / Random / random.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/Crypto/Random/random.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/Crypto/Random/random.pyi
new file mode 100644 (file)
index 0000000..9355270
--- /dev/null
@@ -0,0 +1,17 @@
+from typing import Any, Optional\r
+\r
+class StrongRandom:\r
+    def __init__(self, rng: Optional[Any] = ..., randfunc: Optional[Any] = ...) -> None: ...\r
+    def getrandbits(self, k): ...\r
+    def randrange(self, *args): ...\r
+    def randint(self, a, b): ...\r
+    def choice(self, seq): ...\r
+    def shuffle(self, x): ...\r
+    def sample(self, population, k): ...\r
+\r
+getrandbits = ...  # type: Any\r
+randrange = ...  # type: Any\r
+randint = ...  # type: Any\r
+choice = ...  # type: Any\r
+shuffle = ...  # type: Any\r
+sample = ...  # type: Any\r