C implementation of itertools.permutations().
diff --git a/Misc/NEWS b/Misc/NEWS
index 75d3cc1..ff97473 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -699,7 +699,7 @@
 - Added itertools.product() which forms the Cartesian product of
   the input iterables.
 
-- Added itertools.combinations().
+- Added itertools.combinations() and itertools.permutations().
 
 - Patch #1541463: optimize performance of cgi.FieldStorage operations.