diff options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index fd1d0f7fc5c..314bac3d66d 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -164,6 +164,12 @@ class CommunicatorI(Communicator): def findObjectFactory(self, id): return self._impl.findObjectFactory(id) + def setDefaultContext(self, ctx): + return self._impl.setDefaultContext(ctx) + + def getDefaultContext(self): + return self._impl.getDefaultContext() + def getProperties(self): properties = self._impl.getProperties() return PropertiesI(properties) |