summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-08-21 17:42:58 -0500
committerBenjamin Peterson <benjamin@python.org>2013-08-21 17:42:58 -0500
commit748ae6d9744afda389fd2d4af845e74644cb87c0 (patch)
tree3f3fffd8220de51d54de48fdff457916236b2d91 /CHANGES
parentb1972c1c3e57474f49da2d0064bfe3ccd08dcb4a (diff)
downloadsix-748ae6d9744afda389fd2d4af845e74644cb87c0.tar.gz
add note about zip_longest and filterfalse addition
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 8842c6f..57eb72f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,10 @@ This file lists the changes in each six version.
Development version
-------------------
+- Add six.moves.zip_longest and six.moves.filterfalse, which correspond
+ respectively to itertools.izip_longest and itertools.ifilterfalse on Python 2
+ and itertools.zip_longest and itertools.filterfalse on Python 3.
+
- Issue #25: Add the unichr function, which returns a string for a Unicode
codepoint.