summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-03-11 06:49:40 (GMT)
committerRaymond Hettinger <python@rcn.com>2005-03-11 06:49:40 (GMT)
commit96229b191814556622b575fd320e822f918f355a (patch)
tree3804d604b12aea8ea55a14816c853e9c130fc0ca /Misc
parent26e512a04f7b68684503d7afe21154b5dd392d6e (diff)
downloadcpython-96229b191814556622b575fd320e822f918f355a.zip
cpython-96229b191814556622b575fd320e822f918f355a.tar.gz
cpython-96229b191814556622b575fd320e822f918f355a.tar.bz2
Add two new functions, any() and all().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3f4cbb1..19ce8f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
+- Added two new builtins, any() and all().
+
- Defining a class with empty parentheses is now allowed
(e.g., ``class C(): pass`` is no longer a syntax error)