diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-26 14:55:24 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-26 14:55:24 -0230 |
commit | 20899304e74276a6d9c12ae9f713901e6ebfc840 (patch) | |
tree | 5970a5ff612c59e4bc3147908756ec742a1d09aa /py/python/Ice.py | |
parent | Fixed Windows link error (diff) | |
download | ice-20899304e74276a6d9c12ae9f713901e6ebfc840.tar.bz2 ice-20899304e74276a6d9c12ae9f713901e6ebfc840.tar.xz ice-20899304e74276a6d9c12ae9f713901e6ebfc840.zip |
Bug 3137 - add proxyToProperty
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) |