13
votes
What is the best (idiomatic) way to check the type of a Python variable?
What happens if somebody passes a unicode string to your function? Or a class derived from dict? Or a class implementing a dict-like interface? Following code covers first two cases. If you are usi …
