Message4031

Author yanne
Recipients yanne
Date 2009-01-12.10:34:46
SpamBayes Score 1.2231588e-06
Marked as misclassified No
Message-id <1231756487.5.0.928795881672.issue1230@psf.upfronthosting.co.za>
In-reply-to
Content
Jython 2.5b1 (trunk:5903:5905, Jan 9 2009, 16:01:29) 
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_10
Type "help", "copyright", "credits" or "license" for more information.
>>> from java.lang import *
>>> String('test')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'NoneType' object is not callable
>>>


Jython 2.2.1 on java1.6.0_10
Type "copyright", "credits" or "license" for more information.
>>> from java.lang import *
>>> String('test')
test
>>>
History
Date User Action Args
2009-01-12 10:34:47yannesetrecipients: + yanne
2009-01-12 10:34:47yannesetmessageid: <1231756487.5.0.928795881672.issue1230@psf.upfronthosting.co.za>
2009-01-12 10:34:47yannelinkissue1230 messages
2009-01-12 10:34:46yannecreate