Message6995

Author amak
Recipients amak, tklink
Date 2012-03-31.17:41:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333215692.35.0.300370323362.issue1867@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce that issue, but only by using the -server option to java

C:\>C:\jdk1.7.0_02\bin\java -jar C:\jython252_standalone\jython.jar
Jython 2.5.2 (Release_2_5_2:7206, Mar 2 2011, 23:12:06)
[Java HotSpot(TM) Client VM (Oracle Corporation)] on java1.7.0_02-ea
Type "help", "copyright", "credits" or "license" for more information.
>>> import java
>>> import java.security
>>> import java.security.spec
>>> import java.math
>>> java.security.spec.ECFieldFp(java.math.BigInteger("5"))
java.security.spec.ECFieldFp@5


X:\>C:\jdk1.7.0_02\bin\java -server -jar C:\jython252_standalone\jython.jar
Jython 2.5.2 (Release_2_5_2:7206, Mar 2 2011, 23:12:06)
[Java HotSpot(TM) Server VM (Oracle Corporation)] on java1.7.0_02-ea
Type "help", "copyright", "credits" or "license" for more information.
>>> import java
>>> import java.security
>>> import java.security.spec
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named spec
>>>
History
Date User Action Args
2012-03-31 17:41:32amaksetmessageid: <1333215692.35.0.300370323362.issue1867@psf.upfronthosting.co.za>
2012-03-31 17:41:32amaksetrecipients: + amak, tklink
2012-03-31 17:41:32amaklinkissue1867 messages
2012-03-31 17:41:32amakcreate