As discussed on python-dev, changed builtin.zip() to handle zero arguments
by returning an empty list instead of raising a TypeError.
diff --git a/Misc/NEWS b/Misc/NEWS
index caf49b0..435dd64 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and builtins
 -----------------
 
+- zip() with no arguments now returns an empty list instead of raising
+  a TypeError exception.
+
 Extension modules
 -----------------