20 lines
241 B
Python
20 lines
241 B
Python
import director_unroll
|
|
|
|
|
|
class MyFoo(director_unroll.Foo):
|
|
|
|
def ping(self):
|
|
return "MyFoo::ping()"
|
|
|
|
|
|
a = MyFoo()
|
|
|
|
b = director_unroll.Bar()
|
|
|
|
b.set(a)
|
|
c = b.get()
|
|
|
|
|
|
if not (a.this == c.this):
|
|
print a, c
|
|
raise RuntimeError
|