Message9814

Author zyasoft
Recipients alex.gronholm, fwierzbicki, leosoto, mulleteer, pjenvey, zyasoft
Date 2015-04-13.21:41:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428961279.94.0.224302712107.issue1670@psf.upfronthosting.co.za>
In-reply-to
Content
Alex's approach is good, and is modeled after the similar treatment in datetime classes.

There's the somewhat related issue that 

>>> import math
>>> math.fabs
<java function fabs 0x2>

instead of CPython 2.7

>>> import math
>>> math.fabs
<built-in function fabs>

is what the math function is, which is what caused us to go with __tojava__ to begin with, which confused my thinking about this bug, but that's a larger problem.

Fixed as of https://hg.python.org/jython/rev/d86bf9da41c7
History
Date User Action Args
2015-04-13 21:41:19zyasoftsetmessageid: <1428961279.94.0.224302712107.issue1670@psf.upfronthosting.co.za>
2015-04-13 21:41:19zyasoftsetrecipients: + zyasoft, fwierzbicki, leosoto, pjenvey, alex.gronholm, mulleteer
2015-04-13 21:41:19zyasoftlinkissue1670 messages
2015-04-13 21:41:19zyasoftcreate