12 lines
182 B
Python
12 lines
182 B
Python
|
|
#Test: https://bugs.jython.org/issue2403
|
|
|
|
import ch.psi.pshell.core.Nameable as Nameable
|
|
|
|
class Test(Nameable):
|
|
def getName(self):
|
|
return "Name"
|
|
|
|
|
|
a= Test()
|
|
print a.name |