summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/Server.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-05-04 10:27:10 -0700
committerMark Spruiell <mes@zeroc.com>2017-05-04 10:27:10 -0700
commita03ae69b8b4c5ee3d26fa3d3bf64267a920d17a9 (patch)
treec865a871c5b36152708994068c7ce09c82abc1eb /python/test/Ice/optional/Server.py
parentFixes ice_scheduler/ice_executor: (diff)
downloadice-a03ae69b8b4c5ee3d26fa3d3bf64267a920d17a9.tar.bz2
ice-a03ae69b8b4c5ee3d26fa3d3bf64267a920d17a9.tar.xz
ice-a03ae69b8b4c5ee3d26fa3d3bf64267a920d17a9.zip
ICE-7275 - Raise NotImplementedError in generated Python skeletons
ICE-7763 - Add support for marshaled-result in Python
Diffstat (limited to 'python/test/Ice/optional/Server.py')
-rwxr-xr-xpython/test/Ice/optional/Server.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py
index daf66a2c91e..b1f3398cb56 100755
--- a/python/test/Ice/optional/Server.py
+++ b/python/test/Ice/optional/Server.py
@@ -148,28 +148,28 @@ class InitialI(Test.Initial):
pass
def opMStruct1(self, current):
- return Test.SmallStruct()
+ return Test.Initial.OpMStruct1MarshaledResult(Test.SmallStruct(), current)
def opMStruct2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMStruct2MarshaledResult((p1, p1), current)
def opMSeq1(self, current):
- return []
+ return Test.Initial.OpMSeq1MarshaledResult([], current)
def opMSeq2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMSeq2MarshaledResult((p1, p1), current)
def opMDict1(self, current):
- return {}
+ return Test.Initial.OpMDict1MarshaledResult({}, current)
def opMDict2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMDict2MarshaledResult((p1, p1), current)
def opMG1(self, current):
- return Test.G()
+ return Test.Initial.OpMG1MarshaledResult(Test.G(), current)
def opMG2(self, p1, current):
- return (p1, p1)
+ return Test.Initial.OpMG2MarshaledResult((p1, p1), current)
def supportsRequiredParams(self, current=None):
return False