Message9695

Author zyasoft
Recipients alex.gronholm, fwierzbicki, jmalinen, pekka.klarck, zyasoft
Date 2015-03-21.05:35:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426916105.41.0.307585017295.issue1403@psf.upfronthosting.co.za>
In-reply-to
Content
Now fixed in #2282, with a modest performance speedup:

# no $py.class files in Lib/ in the jar
time java -jar jython-standalone.jar  -c 'import unicodedata, os, time, unittest, datetime, subprocess, zipfile, httplib'

real	0m8.666s
user	0m16.299s
sys	0m0.448s

# with $py.class files in the Lib/
$ time java -jar jython-standalone.jar  -c 'import unicodedata, os, time, unittest, datetime, subprocess, zipfile, httplib'

real	0m6.134s
user	0m12.422s
sys	0m0.397s

So some improvement not having to compile these modules.

Currently Lib/test/** files are being excluded.
History
Date User Action Args
2015-03-21 05:35:05zyasoftsetmessageid: <1426916105.41.0.307585017295.issue1403@psf.upfronthosting.co.za>
2015-03-21 05:35:05zyasoftsetrecipients: + zyasoft, fwierzbicki, pekka.klarck, alex.gronholm, jmalinen
2015-03-21 05:35:05zyasoftlinkissue1403 messages
2015-03-21 05:35:05zyasoftcreate