vote up 1 vote down star
1

What's the pythonic way to designate unreachable code in python as in:

gender = readFromDB(...) # either 'm' or 'f'
if gender == 'm':
    greeting = 'Mr.'
elif gender == 'f':
    greeting = 'Ms.'
else:
    # What should this line say?
flag

3  
Perhaps it should say "Pat"? – Chris Upchurch May 2 at 18:22
I don't think unreachable code is the correct term for this. See en.wikipedia.org/wiki/Unreachable_code – Unknown May 3 at 0:03
@unknown What would you suggest instead? I know this example is not that good, as the else loop is de-facto reachable. But as it happens, that's exactly the "measure of reachability" I'm looking for. – phihag May 3 at 11:35

6 Answers

vote up 5 vote down check

This depends on how sure you are of the gender being either 'm' or 'f'.

If you're absolutely certain, use if...else instead of if...elif...else. Just makes it easier for everyone.

If there's any chance of malformed data, however, you should probably raise an exception to make testing and bug-fixing easier. You could use a gender-neutral greeting in this case, but for anything bigger, special values just make bugs harder to find.

link|flag
/Which/ exception type would you suggest? And everyone seems to get caught up in the example ;). – phihag May 2 at 18:38
Probably ValueError as suggested by others. It seems to make the most sense: docs.python.org/library/exceptions.html – zenazn May 2 at 19:11
vote up 3 vote down

It depends exactly what you want the error to signal, but I would use a dictionary in this case:

greetings={'m':'Mr.', 'f':'Ms.'}
gender = readFromDB(...) # either 'm' or 'f'
greeting=greetings[gender]

If gender is neither m nor f, this will raise a KeyError containing the unexpected value:

greetings={'m':'Mr.', 'f':'Ms.'}

>>> greetings['W']

Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    greetings['W']
KeyError: 'W'

If you want more detail in the message, you can catch & reraise it:

try:
  greeting = greetings[gender]
except KeyError,e:
  raise ValueError('Unrecognized gender %s'%gender)
link|flag
vote up 1 vote down

I sometimes do:

if gender == 'm':
    greeting = 'Mr.'
else:
    assert gender == 'f'
    greeting = 'Ms.'

I think this does a good job of telling a reader of the code that there are only (in this case) two possibilities, and what they are. Although you could make a case for raising a more descriptive error than AssertionError.

link|flag
vote up 2 vote down

I actually think that there's a place for this.

class SeriousDesignError( Exception ):
    pass

So you can do this

if number % 2 == 0:
    result = "Even"
elif number % 2 == 1:
    result = "Odd"
else:
    raise SeriousDesignError()

I think this is the most meaningful error message. This kind of thing can only arise through design errors (or bad maintenance, which is the same thing.)

link|flag
vote up 4 vote down

You could raise an exception:

raise ValueError("Unexpected gender; expected 'm' or 'f', got %s" % gender)

or use an assert False if you expect the database to return only 'm' or 'f':

assert False, "Unexpected gender; expected 'm' or 'f', got %s" % gender
link|flag
1  
I think you mean 'assert False' :) – Stephan202 May 2 at 18:27
meh, fixed thanks :) – marcog May 2 at 18:27
vote up 15 vote down
raise ValueError('invalid gender %r' % gender)
link|flag
From the pythonic manifesto... "...Errors should never pass silently. Unless explicitly silenced." – jottos May 2 at 19:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.