We have a object method that returns a city/state tuple, i.e. ('Boston', 'MA'). Under some valid circumstances, there is no valid city/state to return. Stylistically, does it make more sense to return None, or a two element tuple containing (None, None) in that case?
|
|
||||
|
I would return It is also easier to test:
I would only return |
|||||||||||||||||
|
|
By only returning one value in exceptional circumstances, you risk breaking the tuple unpacking idiom. Some of your callers might do:
In that case, returning
So, I'd personally return |
|||||||
|
|
As others have noted, a tuple with items in it does not test as
Then you could return I'm not necessarily recommending that you do this, in fact I have serious misgivings about flouting this convention, I'm just saying that the truthiness of non-empty tuples is not necessarily in itself a reason to not return a tuple. |
||||
|
|
|
|
|||
|
|
|
If your routine normally returns a tuple, then a tuple is what it should keep returning. The real choice is between returning If it were me, and I chose the tuple over the exception, I would also go with the False_Tuple that kindall suggests -- that way you are supporting tuple extraction across all possible return values, and still allowing the pythonic idiom of asking the object, "Do you evaluate as True?" (Here it is again for completeness):
|
|||
|
|
|
why not making State a property of City? That way your function would return always one value: a City or None. Returning (None, None) is bad for all the reasons stated in the other answers and serves only to support tuple unpacking. None is the best value to return to state that no valid city can be returned, but having a function returning 1 or 2 values is not that good, again because of tuple unpacking. |
|||
|
|
|
To me, returning (None, None) would imply that (None, State) or (City, None) would also be valid return values. If that is the case, go with (None, None), otherwise, Felix and Brent provide very good arguments for simply returning None. |
|||
|
|
|
I would implement a public method for object that returned, let say |
|||
|
|
ValueErrorin stead? – multipleinterfaces Aug 16 '11 at 18:17StopIterationto flag this condition. I find exceptions are not as exceptional as their name would imply in many cases. He could just as well doclass NoCityFound(exception): pass– multipleinterfaces Aug 16 '11 at 18:20namedtuple, the users of your functions won't have to unpack the result, and returningNonemight work as the better choice. – Rosh Oxymoron Aug 16 '11 at 18:34ValueErrorandStopIterationis that the former is, like its name says, an error, while the latter isn't. – pillmuncher Aug 17 '11 at 0:11