summaryrefslogtreecommitdiff
path: root/python/test/Ice/inheritance/TestI.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-03-20 21:51:43 +0100
committerJose <jose@zeroc.com>2017-03-20 21:51:43 +0100
commita47a05a2f73e377053f9b864b0f36c99a84708af (patch)
treefe18a51afcd5dd0f8b847c2a5c8cedc630ed19e0 /python/test/Ice/inheritance/TestI.py
parentFixed gmake build system dependency issue (diff)
downloadice-a47a05a2f73e377053f9b864b0f36c99a84708af.tar.bz2
ice-a47a05a2f73e377053f9b864b0f36c99a84708af.tar.xz
ice-a47a05a2f73e377053f9b864b0f36c99a84708af.zip
Fix (ICE-7684) - use Disp prefix only for class with operations skeletons
Diffstat (limited to 'python/test/Ice/inheritance/TestI.py')
-rw-r--r--python/test/Ice/inheritance/TestI.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/python/test/Ice/inheritance/TestI.py b/python/test/Ice/inheritance/TestI.py
index f4d98732334..e2c93b5b486 100644
--- a/python/test/Ice/inheritance/TestI.py
+++ b/python/test/Ice/inheritance/TestI.py
@@ -9,39 +9,39 @@
import Ice, Test
-class CAI(Test.MA._CADisp):
+class CAI(Test.MA.CADisp):
def caop(self, p, current=None):
return p
-class CBI(Test.MB._CBDisp, CAI):
+class CBI(Test.MB.CBDisp, CAI):
def cbop(self, p, current=None):
return p
-class CCI(Test.MA._CCDisp, CBI):
+class CCI(Test.MA.CCDisp, CBI):
def ccop(self, p, current=None):
return p
-class IAI(Test.MA._IADisp):
+class IAI(Test.MA.IA):
def iaop(self, p, current=None):
return p
-class IB1I(Test.MB._IB1Disp, IAI):
+class IB1I(Test.MB.IB1, IAI):
def ib1op(self, p, current=None):
return p
-class IB2I(Test.MB._IB2Disp, IAI):
+class IB2I(Test.MB.IB2, IAI):
def ib2op(self, p, current=None):
return p
-class ICI(Test.MA._ICDisp, IB1I, IB2I):
+class ICI(Test.MA.IC, IB1I, IB2I):
def icop(self, p, current=None):
return p
-class CDI(Test.MA._CDDisp, CCI, IB1I, IB2I):
+class CDI(Test.MA.CDDisp, CCI, IB1I, IB2I):
def cdop(self, p, current=None):
return p
-class InitialI(Test._InitialDisp):
+class InitialI(Test.Initial):
def __init__(self, adapter):
self._ca = Test.MA.CAPrx.uncheckedCast(adapter.addWithUUID(CAI()))
self._cb = Test.MB.CBPrx.uncheckedCast(adapter.addWithUUID(CBI()))