Message10597

Author zyasoft
Recipients fwierzbicki, judahgreenblatt, zyasoft
Date 2016-01-06.22:24:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452119052.16.0.486693269445.issue1745@psf.upfronthosting.co.za>
In-reply-to
Content
I added a test (https://hg.python.org/jython/rev/837c14575b65) based on what Judah submitted here:

    public void testCompactArray() {
	// tests http://bugs.jython.org/issue1745
	PythonInterpreter interp = new PythonInterpreter();
	interp.put("arr", new double[3]);
	interp.exec("arr.append(3.0)\n\n");
	o = interp.get(arr, Object.class);
    }

and determined this problem must have been fixed a while ago - it was not changed by the recent work in https://hg.python.org/jython/rev/49d498968f34
History
Date User Action Args
2016-01-06 22:24:12zyasoftsetmessageid: <1452119052.16.0.486693269445.issue1745@psf.upfronthosting.co.za>
2016-01-06 22:24:12zyasoftsetrecipients: + zyasoft, fwierzbicki, judahgreenblatt
2016-01-06 22:24:12zyasoftlinkissue1745 messages
2016-01-06 22:24:11zyasoftcreate