Message4132

Author amak
Recipients amak, billiejoex
Date 2009-02-04.15:58:19
SpamBayes Score 4.991077e-09
Marked as misclassified No
Message-id <1233763099.81.0.834574596944.issue1238@psf.upfronthosting.co.za>
In-reply-to
Content
About this error:

======================================================================
ERROR: test_retr_ascii (__main__.TestFtpRetrieveData)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "test_ftpd.py", line 1213, in test_retr_ascii
    expected = data.replace(os.linesep, '\r\n')
OutOfMemoryError: java.lang.OutOfMemoryError: Java heap space

I notice that you're using the cpython "buffer" construct. Because
buffer is not available on jython, you're using a simple replacement,
shown above.

And now you're getting an "Out of memory" error. When you get this
error, how big is the content of data variable, i.e. what is len(data)?
History
Date User Action Args
2009-02-04 15:58:19amaksetmessageid: <1233763099.81.0.834574596944.issue1238@psf.upfronthosting.co.za>
2009-02-04 15:58:19amaksetrecipients: + amak, billiejoex
2009-02-04 15:58:19amaklinkissue1238 messages
2009-02-04 15:58:19amakcreate