diff options
author | Jose <jose@zeroc.com> | 2017-01-26 21:52:52 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-26 21:52:52 +0100 |
commit | f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b (patch) | |
tree | f98f59d56e7185ee90d504cf077e57465655f7fd /python/test/Ice/operations/ServerAMD.py | |
parent | Fixed ICE-6920 - Communicator::destroy is now noexcept (diff) | |
download | ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.bz2 ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.xz ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.zip |
Python: Ice.Value implementation
Diffstat (limited to 'python/test/Ice/operations/ServerAMD.py')
-rwxr-xr-x | python/test/Ice/operations/ServerAMD.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/test/Ice/operations/ServerAMD.py b/python/test/Ice/operations/ServerAMD.py index b2e96b39c96..cc950bb90ec 100755 --- a/python/test/Ice/operations/ServerAMD.py +++ b/python/test/Ice/operations/ServerAMD.py @@ -37,7 +37,7 @@ class FutureThread(threading.Thread): time.sleep(0.01) self.future.set_result(self.result) -class MyDerivedClassI(Test.MyDerivedClass): +class MyDerivedClassI(Test._MyDerivedClassDisp): def __init__(self): self.threads = [] self.threadLock = threading.Lock() @@ -46,19 +46,19 @@ class MyDerivedClassI(Test.MyDerivedClass): def ice_isA(self, id, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - return Test.MyDerivedClass.ice_isA(self, id, current) + return Test._MyDerivedClassDisp.ice_isA(self, id, current) def ice_ping(self, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - Test.MyDerivedClass.ice_ping(self, current) + Test._MyDerivedClassDisp.ice_ping(self, current) def ice_ids(self, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - return Test.MyDerivedClass.ice_ids(self, current) + return Test._MyDerivedClassDisp.ice_ids(self, current) def ice_id(self, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - return Test.MyDerivedClass.ice_id(self, current) + return Test._MyDerivedClassDisp.ice_id(self, current) def shutdown(self, current=None): with self.threadLock: |