commit | 85c20a41dfcec04d161ad7da7260e7b94c62d228 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Nov 06 14:06:48 2003 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Nov 06 14:06:48 2003 +0000 |
tree | 0d9e5b294ab4890b72ddc61d193036ac1d4b5ca4 | |
parent | f607fc5395883ff924c76739e9b0921953568e54 [diff] |
Implement and apply PEP 322, reverse iteration
diff --git a/Misc/NEWS b/Misc/NEWS index c47ed15..838cfc8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and builtins ----------------- +- Added a reversed() builtin function that returns a reverse iterator + over a sequence. + - CObjects are now mutable (on the C level) through PyCObject_SetVoidPtr. - list.sort() now supports three keyword arguments: cmp, key, and reverse.