Skip to content
This repository was archived by the owner on Apr 25, 2021. It is now read-only.

Commit 8f9c91f

Browse files
committed
urandom.pyi 추가
1 parent bdb8897 commit 8f9c91f

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

src/umodules/urandom.pyi

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from typing import Union, Sequence, TypeVar
2+
3+
T = TypeVar('T')
4+
5+
6+
def getrandbits(n: int) -> int:
7+
pass
8+
9+
10+
def seed(a: int) -> None:
11+
pass
12+
13+
14+
def randrange(start: int, stop: Union[None, int] = None, step: int = None) -> int:
15+
pass
16+
17+
18+
def randint(start: int, end: int) -> int:
19+
pass
20+
21+
22+
def choice(seq: Sequence[T]) -> T:
23+
pass
24+
25+
26+
def random() -> float:
27+
pass
28+
29+
30+
def uniform(a: float, b: float) -> float:
31+
pass

0 commit comments

Comments
 (0)