Message3947

Author fwierzbicki
Recipients akong, crotwell, fwierzbicki, pzack
Date 2008-12-17.14:56:16
SpamBayes Score 4.3225498e-07
Marked as misclassified No
Message-id <1229525776.77.0.608582538174.issue1002@psf.upfronthosting.co.za>
In-reply-to
Content
BTW I changed the MyClass output as I typed it in -- for reference I used:

ackage test;

public class MyClass {

    public static String func(MyClass c) {
        return "In static func";
    }

    public static String func() {
        return "In instance method";
    }

}

called with:

from test import MyClass

mc = MyClass()
print mc.func()
print MyClass.func(mc)
print 'Test complete'
History
Date User Action Args
2008-12-17 14:56:16fwierzbickisetmessageid: <1229525776.77.0.608582538174.issue1002@psf.upfronthosting.co.za>
2008-12-17 14:56:16fwierzbickisetrecipients: + fwierzbicki, crotwell, akong, pzack
2008-12-17 14:56:16fwierzbickilinkissue1002 messages
2008-12-17 14:56:16fwierzbickicreate