Message4024

Author njoyce
Recipients njoyce
Date 2009-01-11.03:21:55
SpamBayes Score 0.22142632
Marked as misclassified No
Message-id <1231644116.47.0.904205537592.issue1227@psf.upfronthosting.co.za>
In-reply-to
Content
An example:

import cStringIO

buf = cStringIO.StringIO()
buf.write('hello')
buf.seek(2)
buf.write('hi')

assert buf.getvalue() == 'hehio'

I have ported StringIO.write method in CPythonLib/StringIO.py to cStringIO.java and added the 
above test to test_StringIO_jy.py

When this issue and http://bugs.jython.org/issue1217 have been resolved, there will only be 2 
failing tests in the PyAMF test suite - check http://pyamf.org/pyamf/branches/impl-indep-test-
suite-343.
History
Date User Action Args
2009-01-11 03:21:56njoycesetrecipients: + njoyce
2009-01-11 03:21:56njoycesetmessageid: <1231644116.47.0.904205537592.issue1227@psf.upfronthosting.co.za>
2009-01-11 03:21:56njoycelinkissue1227 messages
2009-01-11 03:21:56njoycecreate