]> granicus.if.org Git - python/commitdiff
#17178: update any()/all() docstrings to document their behavior with empty iterables...
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 15 Feb 2013 21:35:14 +0000 (23:35 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 15 Feb 2013 21:35:14 +0000 (23:35 +0200)
Misc/ACKS
Python/bltinmodule.c

index 1ea66e4ebc526742163b3fbb0391279e7ac8ecf7..9ccc8e16c430d5356328415b88665d1d5b539e7e 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -37,6 +37,7 @@ Erik Andersén
 Oliver Andrich
 Ross Andrus
 Jérémy Anger
+Ankur Ankan
 Jon Anglin
 Heidi Annexstad
 Éric Araujo
index 35b2cdc4b2390c00a4265b51d3755c147a6b3592..d4bf677cb759035a2a2f9d8eca24fe293d2bf716 100644 (file)
@@ -262,7 +262,8 @@ builtin_all(PyObject *self, PyObject *v)
 PyDoc_STRVAR(all_doc,
 "all(iterable) -> bool\n\
 \n\
-Return True if bool(x) is True for all values x in the iterable.");
+Return True if bool(x) is True for all values x in the iterable.\n\
+If the iterable is empty, return True.");
 
 static PyObject *
 builtin_any(PyObject *self, PyObject *v)
@@ -304,7 +305,8 @@ builtin_any(PyObject *self, PyObject *v)
 PyDoc_STRVAR(any_doc,
 "any(iterable) -> bool\n\
 \n\
-Return True if bool(x) is True for any x in the iterable.");
+Return True if bool(x) is True for any x in the iterable.\n\
+If the iterable is empty, return False.");
 
 static PyObject *
 builtin_ascii(PyObject *self, PyObject *v)