commit | 96229b191814556622b575fd320e822f918f355a | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Fri Mar 11 06:49:40 2005 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Fri Mar 11 06:49:40 2005 +0000 |
tree | 3804d604b12aea8ea55a14816c853e9c130fc0ca | |
parent | 26e512a04f7b68684503d7afe21154b5dd392d6e [diff] [blame] |
Add two new functions, any() and all().
diff --git a/Misc/NEWS b/Misc/NEWS index 3f4cbb1..19ce8f4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,8 @@ 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)