-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
all([]) should return false #14
Comments
Hi, raff on my gpython it works well.
Is there any other issue which you intended? |
Sorry, I meant it should return True, according to python specs. See the link and the python implementations in there. |
corona10
added a commit
to corona10/gpython
that referenced
this issue
Aug 30, 2018
Update builtin_all and builtin_any for Python3 refernce: - https://docs.python.org/3/library/functions.html#all - https://docs.python.org/3/library/functions.html#all Fixes: go-python#14
corona10
added a commit
to corona10/gpython
that referenced
this issue
Aug 30, 2018
Update builtin_all and builtin_any for Python3 reference: - https://docs.python.org/3/library/functions.html#all - https://docs.python.org/3/library/functions.html#all Fixes: go-python#14
sbinet
pushed a commit
that referenced
this issue
Aug 31, 2018
Update builtin_all and builtin_any for Python3 reference: - https://docs.python.org/3/library/functions.html#all - https://docs.python.org/3/library/functions.html#all Fixes: #14
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From python documentation at https://docs.python.org/3/library/functions.html#all
Return True if all elements of the iterable are true (or if the iterable is empty).
The text was updated successfully, but these errors were encountered: