`random.randrange` says its signature is `randrange(stop: Tuple[int, int, int]) -> int:` But it should say its signature is like this: (pasted from CPython doc) ```py random.randrange(stop) random.randrange(start, stop[, step]) ```
random.randrangesays its signature israndrange(stop: Tuple[int, int, int]) -> int:But it should say its signature is like this: (pasted from CPython doc)