[Epydoc-commits] SF.net SVN: epydoc: [1671] trunk/epydoc/src/epydoc/util.py
Brought to you by:
edloper
From: <ed...@us...> - 2008-01-29 02:55:51
|
Revision: 1671 http://epydoc.svn.sourceforge.net/epydoc/?rev=1671&view=rev Author: edloper Date: 2008-01-28 18:55:49 -0800 (Mon, 28 Jan 2008) Log Message: ----------- - For run_subprocess() on py <2.3 non-unix systems, read stdout before reading stderr, as suggested by sourceforge bug #1838649. Modified Paths: -------------- trunk/epydoc/src/epydoc/util.py Modified: trunk/epydoc/src/epydoc/util.py =================================================================== --- trunk/epydoc/src/epydoc/util.py 2008-01-29 02:43:32 UTC (rev 1670) +++ trunk/epydoc/src/epydoc/util.py 2008-01-29 02:55:49 UTC (rev 1671) @@ -279,8 +279,8 @@ except IOError, e: raise OSError(e) to_child.close() + out = from_child.read() err = child_err.read() - out = from_child.read() # Assume that there was an error iff anything was written # to the child's stderr. if err == '': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |