diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-07-20 20:17:51 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-07-20 20:17:51 +0000 |
commit | 55363a13e1c750b39db419c5312217b9256f1fec (patch) | |
tree | 76aa0e305ccd7a3db64e7e03703f74e2dadb0c34 /py/python/Ice.py | |
parent | file Communicator.cpp was initially added on branch R3_1_branch. (diff) | |
download | ice-55363a13e1c750b39db419c5312217b9256f1fec.tar.bz2 ice-55363a13e1c750b39db419c5312217b9256f1fec.tar.xz ice-55363a13e1c750b39db419c5312217b9256f1fec.zip |
Merge from R3_1_branch
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 2b1764e96a7..33aad8fc9d3 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -226,6 +226,9 @@ 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() |