Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add type hints to random #821

Merged
merged 2 commits into from
Jan 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions axelrod/random_.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import random
import numpy
from axelrod import Actions
from axelrod.actions import Action


def random_choice(p=0.5):
def random_choice(p: float = 0.5) -> Action:
"""
Return 'C' with probability `p`, else return 'D'

Expand Down Expand Up @@ -32,7 +33,7 @@ def random_choice(p=0.5):
return Actions.D


def randrange(a, b):
def randrange(a: int, b: int) -> int:
"""Python 2 / 3 compatible randrange. Returns a random integer uniformly
between a and b (inclusive)"""
c = b - a
Expand Down