Deprecate os.popen* and popen2 module in favor of the subprocess module.
diff --git a/Misc/NEWS b/Misc/NEWS
index 80bdc0a..32531f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -207,6 +207,8 @@
 Library
 -------
 
+- The popen2 module and os.popen* are deprecated.  Use the subprocess module.
+
 - Added an optional credentials argument to SMTPHandler, for use with SMTP
   servers which require authentication.