summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-02-16 21:19:13 +0000
committerBernard Normier <bernard@zeroc.com>2007-02-16 21:19:13 +0000
commit7b5360ff74ff2375ca934e76a8b4c840c1c5565d (patch)
treecf211fb26f29617d9da2ee12b2311a9f348918ce /py/python/Ice.py
parentRemove *.config files frmo BV/C# Remove all windows project files (diff)
downloadice-7b5360ff74ff2375ca934e76a8b4c840c1c5565d.tar.bz2
ice-7b5360ff74ff2375ca934e76a8b4c840c1c5565d.tar.xz
ice-7b5360ff74ff2375ca934e76a8b4c840c1c5565d.zip
ImplicitContext updates
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index c7214616be3..62895193232 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -523,17 +523,18 @@ class ImplicitContextI(ImplicitContext):
def getContext(self):
return self._impl.getContext()
- def set(self, key, value):
- self._impl.set(key, value)
-
- def remove(self, key):
- self._impl.remove(key)
+ def containsKey(self, key):
+ return self._impl.containsKey(key)
def get(self, key):
return self._impl.get(key)
- def getWithDefault(self, key, dflt):
- return self._impl.getWithDefault(key, dflt)
+ def put(self, key, value):
+ return self._impl.put(key, value)
+
+ def remove(self, key):
+ return self._impl.remove(key)
+
#
# Its not possible to block in a python signal handler since this