summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2014-09-08 16:26:55 +0000
committerBernard Normier <bernard@zeroc.com>2014-09-08 16:26:55 +0000
commitdca3056b1e44b0dd5b106f1df86ab8cd5a334b1a (patch)
treea04160d5f64fd555401f533d4ef7e8658518fa19 /py/python/Ice.py
parentFixed ICE-5667: Added Communicator::createAdmin in C++, Java, C# and Python (diff)
downloadice-dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a.tar.bz2
ice-dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a.tar.xz
ice-dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a.zip
Added missing implementation for ObjectAdapter::getLocator in Python
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index 33234632965..60ff93258ab 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -763,6 +763,9 @@ class ObjectAdapterI(ObjectAdapter):
def setLocator(self, loc):
self._impl.setLocator(loc)
+ def getLocator(self):
+ return self._impl.getLocator()
+
def refreshPublishedEndpoints(self):
self._impl.refreshPublishedEndpoints()