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
We should be able to accept a generator of ints as an input and not only a list.
This is not correct:
>>> from intbitset import * >>> intbitset([1,2,3]) intbitset([1, 2, 3]) >>> intbitset(iter([1,2,3])) intbitset([]) >>> def a(seq): ... yield from seq ... >>> intbitset(a([1,2,3])) intbitset([])
See aboutcode-org/scancode-toolkit#3077 reported by progval
The text was updated successfully, but these errors were encountered:
I ran into this. Ok, the docs say "rhs ... sequence". But they also say "Emulates the Python built-in set class interface".
Thanks for the package. This comment is just to inform you. No pressure.
Sorry, something went wrong.
No branches or pull requests
We should be able to accept a generator of ints as an input and not only a list.
This is not correct:
See aboutcode-org/scancode-toolkit#3077 reported by progval
The text was updated successfully, but these errors were encountered: