From: <cg...@us...> - 2009-08-25 07:59:36
|
Revision: 6718 http://jython.svn.sourceforge.net/jython/?rev=6718&view=rev Author: cgroves Date: 2009-08-25 07:59:28 +0000 (Tue, 25 Aug 2009) Log Message: ----------- Need to flush the underlying io object after writing our buffer to it to get things really flushed. Fixes issue #1433. Modified Paths: -------------- trunk/jython/src/org/python/core/io/BufferedWriter.java Modified: trunk/jython/src/org/python/core/io/BufferedWriter.java =================================================================== --- trunk/jython/src/org/python/core/io/BufferedWriter.java 2009-08-24 03:30:29 UTC (rev 6717) +++ trunk/jython/src/org/python/core/io/BufferedWriter.java 2009-08-25 07:59:28 UTC (rev 6718) @@ -82,6 +82,7 @@ rawIO.write(buffer); } buffer.clear(); + super.flush(); } /** {@inheritDoc} */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |