diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 5f593f7931e..6371f57c815 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -383,6 +383,9 @@ class CommunicatorI(Communicator): def propertyToProxy(self, str): return self._impl.propertyToProxy(str) + def proxyToProperty(self, obj, str): + return self._impl.proxyToProperty(obj, str) + def stringToIdentity(self, str): return self._impl.stringToIdentity(str) |