diff options
Diffstat (limited to 'python/test/Ice/custom/Server.py')
-rwxr-xr-x | python/test/Ice/custom/Server.py | 6 |
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() |