Message7760

Author fwierzbicki
Recipients MrMeanie, amak, fwierzbicki, tklink
Date 2013-02-25.21:40:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361828459.48.0.584971661981.issue1867@psf.upfronthosting.co.za>
In-reply-to
Content
In general, it is always better to import Java classes directly and avoid depending on importing packages, so for example:

from java.security.spec import DSAPrivateKeySpec

should work much better. Our package caching mechanism has limits - there is no real way to ask a JVM: what classes does this package contain? Instead we walk through the jars and keep notes ourselves with the package caching mechanism. I'm tempted to turn it off by default in 3.x.
History
Date User Action Args
2013-02-25 21:40:59fwierzbickisetmessageid: <1361828459.48.0.584971661981.issue1867@psf.upfronthosting.co.za>
2013-02-25 21:40:59fwierzbickisetrecipients: + fwierzbicki, amak, MrMeanie, tklink
2013-02-25 21:40:59fwierzbickilinkissue1867 messages
2013-02-25 21:40:59fwierzbickicreate