Message3951

Author crotwell
Recipients akong, crotwell, fwierzbicki, pzack
Date 2008-12-17.16:02:17
SpamBayes Score 4.32987e-15
Marked as misclassified No
Message-id <1229529738.34.0.810455478405.issue1002@psf.upfronthosting.co.za>
In-reply-to
Content
Can you explain why you changed the test case to be both static methods?
The original posting was an __object__ method hiding a static method. So
two static methods is really a completely different case, one which has
worked fine all along and is not relevant to this bug.

In Java I can do this:
   System.out.println(URL.class.toString());
which prints 
java.net.URL

How would you call the equivalent in jython? 

If you try URL.toString() you get an error. You can't create a URL
instance and then call toString() because then you will get the toString
on the URL instance instead of the class.

Perhaps there is not a good way with python syntax to fix this in
jython, but I would humbly suggest that his bug should not be closed
based on your two static method test.
History
Date User Action Args
2008-12-17 16:02:18crotwellsetmessageid: <1229529738.34.0.810455478405.issue1002@psf.upfronthosting.co.za>
2008-12-17 16:02:18crotwellsetrecipients: + crotwell, fwierzbicki, akong, pzack
2008-12-17 16:02:18crotwelllinkissue1002 messages
2008-12-17 16:02:17crotwellcreate