summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-09-16 10:56:16 -0400
committerBenjamin Peterson <benjamin@python.org>2011-09-16 10:56:16 -0400
commite9c41d235dc60ea07fa83d59c9df3c100661eaec (patch)
tree150e356dbf9fd68eb4f7656e9c93244f61b3255f /CHANGES
parentbcb49f3d5ddc4922ce9df726836cc1689c64e244 (diff)
downloadsix-e9c41d235dc60ea07fa83d59c9df3c100661eaec.tar.gz
add wrappers for iterating over keys/values/items of a dictionary
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index d54d913..d5df485 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,9 @@ This file lists the changes in each six version.
1.1
---
+- Add compatibility mappings for iterators over the keys, values, and items of a
+ dictionary.
+
- Fix six.MAXSIZE on platforms where sizeof(long) != sizeof(Py_ssize_t).
- Issue #3: Add six.moves mappings for filter, map, and zip.