summaryrefslogtreecommitdiff
path: root/python/test/Ice/custom/Server.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2019-07-18 23:51:08 +0200
committerJose <jose@zeroc.com>2019-07-18 23:51:08 +0200
commitfc886b010c01cccb8cca3ac4d92f1ebd7fc72295 (patch)
tree51cf00a4a955efecc9c94527aeafcb25ffbe57b9 /python/test/Ice/custom/Server.py
parentSimplify OutputStream creation (diff)
parentFixed non-thread safe AMD dispatch, fixes #448 (#449) (diff)
downloadice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.tar.bz2
ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.tar.xz
ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.zip
Merge remote-tracking branch 'origin/3.7' into swift
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()