summaryrefslogtreecommitdiff
path: root/python/test/Ice/slicing/exceptions
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-01-26 21:52:52 +0100
committerJose <jose@zeroc.com>2017-01-26 21:52:52 +0100
commitf3eeced45abdcbb8af31569bf8cee55f0d2a3b4b (patch)
treef98f59d56e7185ee90d504cf077e57465655f7fd /python/test/Ice/slicing/exceptions
parentFixed ICE-6920 - Communicator::destroy is now noexcept (diff)
downloadice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.bz2
ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.tar.xz
ice-f3eeced45abdcbb8af31569bf8cee55f0d2a3b4b.zip
Python: Ice.Value implementation
Diffstat (limited to 'python/test/Ice/slicing/exceptions')
-rw-r--r--python/test/Ice/slicing/exceptions/AllTests.py2
-rwxr-xr-xpython/test/Ice/slicing/exceptions/Server.py2
-rwxr-xr-xpython/test/Ice/slicing/exceptions/ServerAMD.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/python/test/Ice/slicing/exceptions/AllTests.py b/python/test/Ice/slicing/exceptions/AllTests.py
index 5419f08e33e..abdd2c6a761 100644
--- a/python/test/Ice/slicing/exceptions/AllTests.py
+++ b/python/test/Ice/slicing/exceptions/AllTests.py
@@ -189,7 +189,7 @@ class Callback(CallbackBase):
test(False)
self.called()
-class RelayI(Test.Relay):
+class RelayI(Test._RelayDisp):
def knownPreservedAsBase(self, current=None):
ex = Test.KnownPreservedDerived()
ex.b = "base"
diff --git a/python/test/Ice/slicing/exceptions/Server.py b/python/test/Ice/slicing/exceptions/Server.py
index 29834507e62..d77acfcccca 100755
--- a/python/test/Ice/slicing/exceptions/Server.py
+++ b/python/test/Ice/slicing/exceptions/Server.py
@@ -13,7 +13,7 @@ import Ice
Ice.loadSlice('-I. --all ServerPrivate.ice')
import Test
-class TestI(Test.TestIntf):
+class TestI(Test._TestIntfDisp):
def shutdown(self, current=None):
current.adapter.getCommunicator().shutdown()
diff --git a/python/test/Ice/slicing/exceptions/ServerAMD.py b/python/test/Ice/slicing/exceptions/ServerAMD.py
index 6be6fbe5c03..8e821636a60 100755
--- a/python/test/Ice/slicing/exceptions/ServerAMD.py
+++ b/python/test/Ice/slicing/exceptions/ServerAMD.py
@@ -14,7 +14,7 @@ import Ice
Ice.loadSlice('-I. --all ServerPrivateAMD.ice')
import Test
-class TestI(Test.TestIntf):
+class TestI(Test._TestIntfDisp):
def shutdown(self, current=None):
current.adapter.getCommunicator().shutdown()