diff options
Diffstat (limited to 'py/test/Ice/operations/TestI.py')
-rw-r--r-- | py/test/Ice/operations/TestI.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/test/Ice/operations/TestI.py b/py/test/Ice/operations/TestI.py index ee595ba8532..5cf3a522b2b 100644 --- a/py/test/Ice/operations/TestI.py +++ b/py/test/Ice/operations/TestI.py @@ -154,6 +154,12 @@ class MyDerivedClassI(Test.MyDerivedClass): r.update(p2) return (r, p3) + def opMyStructMyEnumD(self, p1, p2, current=None): + p3 = p1.copy() + r = p1.copy() + r.update(p2) + return (r, p3) + def opIntS(self, s, current=None): return [-x for x in s] |