diff options
Diffstat (limited to 'py/test/Ice/operations/TestI.py')
-rw-r--r-- | py/test/Ice/operations/TestI.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/py/test/Ice/operations/TestI.py b/py/test/Ice/operations/TestI.py index 5c1a43b42b6..b7462097a14 100644 --- a/py/test/Ice/operations/TestI.py +++ b/py/test/Ice/operations/TestI.py @@ -48,7 +48,7 @@ class MyDerivedClassI(Test.MyDerivedClass): return (p2, p1) def opByteS(self, p1, p2, current=None): - # By default sequence<byte> maps to a string. + # By default sequence<byte> maps to a string. p3 = map(ord, p1) p3.reverse() r = map(ord, p1) @@ -170,11 +170,11 @@ class MyDerivedClassI(Test.MyDerivedClass): class TestCheckedCastI(Test.TestCheckedCast): def __init__(self): - self.ctx = None + self.ctx = None def getContext(self, current): - return self.ctx; + return self.ctx; def ice_isA(self, s, current): - self.ctx = current.ctx - return Test.TestCheckedCast.ice_isA(self, s, current) + self.ctx = current.ctx + return Test.TestCheckedCast.ice_isA(self, s, current) |