We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
search.is_iter returns False for sets (and others). A more appropriate implementation would be:
from collections import Iterable try: basestring except NameError: basestring = str def is_iter(val): return not isinstance(val, basestring) and isinstance(val, Iterable)
The text was updated successfully, but these errors were encountered:
Could you provide a pull request and a small test?
Sorry, something went wrong.
fix is_iter implementation. see lugensa#30
df1fc8e
Merge pull request #34 from mamico/issue30
215afb2
fix is_iter implementation. see #30
No branches or pull requests
search.is_iter returns False for sets (and others). A more appropriate implementation would be:
The text was updated successfully, but these errors were encountered: