Message1561

Author fwierzbicki
Recipients
Date 2007-04-26.14:33:26
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
c.toString() isn't going to work from Jython -- Jython 2.2 no
longer exposes the underlying Java methods for built in classes -- you
need to do this using the Python idiom:

>>> c = 1
>>> str(c)
'1'
History
Date User Action Args
2008-02-20 17:17:48adminlinkissue1707892 messages
2008-02-20 17:17:48admincreate