get_other_senses and get_best_sense claim to check for lowercase, uppercase, and title case when ignore_case=True. However, they only check for the case that's passed in, upper, and title, but don't check for lowercase. This PR fixes this issue so lowercase is explicitly checked as well.
get_other_senses
andget_best_sense
claim to check for lowercase, uppercase, and title case whenignore_case=True
. However, they only check for the case that's passed in, upper, and title, but don't check for lowercase. This PR fixes this issue so lowercase is explicitly checked as well.closes #138