#5329: fix os.popen* regression from 2.5: don't execute commands as a sequence
through the shell. also document the correct subprocess replacement for this
case
patch from Jean-Paul Calderone and Jani Hakala
diff --git a/Misc/NEWS b/Misc/NEWS
index 9cd6638..13912e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@
Core and Builtins
-----------------
+- Issue #5329: Fix os.popen* regression from 2.5 with commands as a
+ sequence running through the shell. Patch by Jean-Paul Calderone
+ and Jani Hakala.
+
- Issue #7019: Raise ValueError when unmarshalling bad long data, instead
of producing internally inconsistent Python longs.