[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-15 Thread Éric Araujo
Éric Araujo added the comment: If someone wants to write the patch for this, feel free to ask (here or on the core-mentorship friendly mailing list) if you need help finding the right C file or anything else. -- components: +Interpreter Core -Documentation keywords: +easy nosy:

[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-15 Thread Ankur Ankan
Ankur Ankan added the comment: I am a beginner and want to write the patch for this issue, so please help me find the right C file. Thanks. -- nosy: +Ankur.Ankan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17178

[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-15 Thread Ankur Ankan
Ankur Ankan added the comment: I guess I have found it. It's bltinmodule.c . -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17178 ___ ___

[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-10 Thread py.user
New submission from py.user: help(all) all(...) all(iterable) - bool Return True if bool(x) is True for all values x in the iterable. all([]) True bool() False -- assignee: docs@python components: Documentation messages: 181873 nosy: docs@python, py.user priority: