Message3103

Author crotwell
Recipients crotwell
Date 2008-03-25.18:46:09
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1206470771.04.0.0411987527663.issue1014@psf.upfronthosting.co.za>
In-reply-to
Content
Patch to add func_code to PyReflectedFunction so that getargspec in
inspect.py works with java methods. For example:


import inspect
from java.lang import Math
print inspect.getargspec(Math.atan2)
(['double', 'double'], None, None, None)

This could be part of Issue526672
History
Date User Action Args
2008-09-12 00:28:34nrileysetspambayes_score: 0.551406 -> 0.0
2008-03-25 18:46:11crotwellsetspambayes_score: 0.551406 -> 0.551406
recipients: + crotwell
2008-03-25 18:46:11crotwellsetspambayes_score: 0.551406 -> 0.551406
messageid: <1206470771.04.0.0411987527663.issue1014@psf.upfronthosting.co.za>
2008-03-25 18:46:10crotwelllinkissue1014 messages
2008-03-25 18:46:10crotwellcreate