summaryrefslogtreecommitdiff
path: root/py/python
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2014-09-08 12:03:16 -0400
committerBernard Normier <bernard@zeroc.com>2014-09-08 12:03:16 -0400
commita0f6b6fc1a619c40979f5ba00d71dc661cfc6499 (patch)
tree81b40da86417ed18a186d595c119bb7823b17fcf /py/python
parentICE-5658 - NPM support for IceJS distribution (diff)
downloadice-a0f6b6fc1a619c40979f5ba00d71dc661cfc6499.tar.bz2
ice-a0f6b6fc1a619c40979f5ba00d71dc661cfc6499.tar.xz
ice-a0f6b6fc1a619c40979f5ba00d71dc661cfc6499.zip
Fixed ICE-5667: Added Communicator::createAdmin in C++, Java, C# and Python
Diffstat (limited to 'py/python')
-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 9be78a0d465..33234632965 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -616,6 +616,9 @@ class CommunicatorI(Communicator):
def end_flushBatchRequests(self, r):
return self._impl.end_flushBatchRequests(r)
+ def createAdmin(self, adminAdapter, adminIdentity):
+ return self._impl.createAdmin(adminAdapter, adminIdentity)
+
def getAdmin(self):
return self._impl.getAdmin()