summaryrefslogtreecommitdiff
path: root/python/test/Ice/custom/Server.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/custom/Server.py')
-rwxr-xr-xpython/test/Ice/custom/Server.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python/test/Ice/custom/Server.py b/python/test/Ice/custom/Server.py
index f035cfc3144..85b3ba6d02a 100755
--- a/python/test/Ice/custom/Server.py
+++ b/python/test/Ice/custom/Server.py
@@ -146,6 +146,9 @@ class CustomI(Test.Custom):
def opBogusArrayNoCallableFactory(self, current):
return [True, False, True, False]
+ def opD(self, d, current):
+ return d
+
def shutdown(self, current=None):
current.adapter.getCommunicator().shutdown()
@@ -223,6 +226,9 @@ if hasNumPy:
def opBogusNumpyArrayType(self, current):
return [True, False, True, False]
+ def opD(self, d, current):
+ return d
+
def shutdown(self, current=None):
current.adapter.getCommunicator().shutdown()