diff options
author | Raymond Hettinger <python@rcn.com> | 2005-03-11 06:49:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-03-11 06:49:40 (GMT) |
commit | 96229b191814556622b575fd320e822f918f355a (patch) | |
tree | 3804d604b12aea8ea55a14816c853e9c130fc0ca /Misc | |
parent | 26e512a04f7b68684503d7afe21154b5dd392d6e (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |