Files
dev/script/test/TestDefault.py
2020-07-15 15:09:02 +02:00

13 lines
205 B
Python

#Test: https://bugs.jython.org/issue2403
#Fixed in Jython 2.7.2
import ch.psi.pshell.core.Nameable as Nameable
class Test(Nameable):
def getName(self):
return "Name"
a= Test()
print a.name