Message10236

Author zyasoft
Recipients jsaiz, zyasoft
Date 2015-09-09.16:33:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441816430.79.0.292550434801.issue2391@psf.upfronthosting.co.za>
In-reply-to
Content
Maybe a problem specifically with 2.5.2?

$ jython27
Jython 2.7.0 (default:9987c746f838, Apr 29 2015, 02:25:11)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.8.0_45
Type "help", "copyright", "credits" or "license" for more information.
>>> from attributeTest import DoubleHolder
>>> d = DoubleHolder()
>>> d.number
0.0
>>> d.number = 3.0
>>> d.number
3.0

$ jython25
Jython 2.5.4 (2.5:5ce837b1a1d8+, Dec 30 2014, 09:01:23)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.8.0_45
Type "help", "copyright", "credits" or "license" for more information.
>>> from attributeTest import DoubleHolder
>>> d = DoubleHolder()
>>> d.number
0.0
>>> d.number = 3.0
>>> d.number
3.0
History
Date User Action Args
2015-09-09 16:33:50zyasoftsetmessageid: <1441816430.79.0.292550434801.issue2391@psf.upfronthosting.co.za>
2015-09-09 16:33:50zyasoftsetrecipients: + zyasoft, jsaiz
2015-09-09 16:33:50zyasoftlinkissue2391 messages
2015-09-09 16:33:50zyasoftcreate