hc99's picture
Add files using upload-large-folder tool
35b5a81 verified
raw
history blame
184 Bytes
def is_iterable(x):
"An implementation independent way of checking for iterables"
try:
iter(x)
except TypeError:
return False
else:
return True