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/blobject/Server.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/blobject/Server.py')
-rwxr-xr-x | python/test/Ice/blobject/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/blobject/Server.py b/python/test/Ice/blobject/Server.py index 491f0ba9d8e..cd02c163c36 100755 --- a/python/test/Ice/blobject/Server.py +++ b/python/test/Ice/blobject/Server.py @@ -15,7 +15,7 @@ import Ice Ice.loadSlice('Test.ice') import Test -class TestI(Test.Hello): +class TestI(Test._HelloDisp): def sayHello(self, delay, current=None): if delay != 0: time.sleep(delay / 1000.0) |