Message3947
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' |
|
Date |
User |
Action |
Args |
2008-12-17 14:56:16 | fwierzbicki | set | messageid: <1229525776.77.0.608582538174.issue1002@psf.upfronthosting.co.za> |
2008-12-17 14:56:16 | fwierzbicki | set | recipients:
+ fwierzbicki, crotwell, akong, pzack |
2008-12-17 14:56:16 | fwierzbicki | link | issue1002 messages |
2008-12-17 14:56:16 | fwierzbicki | create | |
|