diff options
Diffstat (limited to 'py/test/Ice/operations/ServerAMD.py')
-rwxr-xr-x | py/test/Ice/operations/ServerAMD.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/test/Ice/operations/ServerAMD.py b/py/test/Ice/operations/ServerAMD.py index a7d09dfe07f..b678605d03a 100755 --- a/py/test/Ice/operations/ServerAMD.py +++ b/py/test/Ice/operations/ServerAMD.py @@ -191,6 +191,12 @@ class MyDerivedClassI(Test.MyDerivedClass): r.update(p2) cb.ice_response(r, p3) + def opMyStructMyEnumD_async(self, cb, p1, p2, current=None): + p3 = p1.copy() + r = p1.copy() + r.update(p2) + cb.ice_response(r, p3) + def opIntS_async(self, cb, s, current=None): cb.ice_response([-x for x in s]) |