summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Misc/ACKS1
-rw-r--r--Python/bltinmodule.c6
2 files changed, 5 insertions, 2 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 1ea66e4..9ccc8e1 100644
--- 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
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 35b2cdc..d4bf677 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -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)