Message5158

Author ssteiner
Recipients ssteiner
Date 2009-09-14.15:40:24
SpamBayes Score 0.04205084
Marked as misclassified No
Message-id <1252942825.77.0.708547891225.issue1468@psf.upfronthosting.co.za>
In-reply-to
Content
Failing to call close() delays the file being written while ant may
depend on the file being read. This is working correctly for python and jep.

<script language="jython" setbeans="false">
<![CDATA[
import os
os.remove('x')
f = open('x', 'w')
f.write('xyz')
#f.close()
]]>
</script>
<loadfile property="message" srcFile="x"/>
<echo message="${message}"/>
</target>
History
Date User Action Args
2009-09-14 15:40:26ssteinersetrecipients: + ssteiner
2009-09-14 15:40:25ssteinersetmessageid: <1252942825.77.0.708547891225.issue1468@psf.upfronthosting.co.za>
2009-09-14 15:40:25ssteinerlinkissue1468 messages
2009-09-14 15:40:24ssteinercreate