Source code django/utils/itercompat.py

1
2
3
4
5
6
7
8
def is_iterable(x):
    "An implementation independent way of checking for iterables"
    try:
        iter(x)
    except TypeError:
        return False
    else:
        return True