Add return type for 3-argument random.randrange()

This commit is contained in:
Alec Delaney 2022-04-19 16:14:01 -04:00 committed by GitHub
parent 9274e6a681
commit 3a5973084f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(random_getrandbits_obj, random_getrandbits);
//| @overload
//| def randrange(start: int, stop: int) -> int: ...
//| @overload
//| def randrange(start: int, stop: int, step: int):
//| def randrange(start: int, stop: int, step: int) -> int:
//| """Returns a randomly selected integer from ``range(start[, stop[, step]])``."""
//| ...
//|