1
0
mirror of https://github.com/django/django.git synced 2025-04-25 01:34:38 +00:00
django/django/utils/itercompat.py

9 lines
184 B
Python

def is_iterable(x):
"An implementation independent way of checking for iterables"
try:
iter(x)
except TypeError:
return False
else:
return True