How do I check if an object is an instance of a Named tuple?
|
feedback
|
|
Calling the function
it IS possible to get a false positive from this, but only if somebody's going out of their way to make a type that looks a lot like a named tuple but isn't one;-). | |||||||||||||||||
feedback
|
|
If you need to check before calling namedtuple specific functions on it, then just call them and catch the exception instead. That's the preferred way to do it in python. | |||
feedback
|
assertstatement only (I am writing an extention to namedtuples .. which mixin asserts that it is used with a namedtuple as its sibling base class), heuristic check may also be fine. I think it is worth adding your__doc__check to Alex's code below. – Sridhar Ratnakumar Jan 30 '10 at 4:26