summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-09-26 16:38:18 -0400
committerBernard Normier <bernard@zeroc.com>2007-09-26 16:38:18 -0400
commit8c37266661594245c4bea4c4094c86851bdf5550 (patch)
tree1871c4c29711c162a296f7994bfd9115a30216ef /py/python/Ice.py
parentFixed bug 2488 (diff)
downloadice-8c37266661594245c4bea4c4094c86851bdf5550.tar.bz2
ice-8c37266661594245c4bea4c4094c86851bdf5550.tar.xz
ice-8c37266661594245c4bea4c4094c86851bdf5550.zip
Squashed commit of the following:
commit 569cd3ce2933b104c980b4bfa8a1d0bc6d3be4c9 Author: Bernard Normier <bernard@zeroc.com> Date: Wed Sep 26 16:36:46 2007 -0400 Implemented admin facet filtering (Ice.Admin.Facets property) and Properties::getPropertyAsList[WithDefault]
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index 3afd16263f8..7f89bfd17a3 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -474,6 +474,12 @@ class PropertiesI(Properties):
def getPropertyAsIntWithDefault(self, key, value):
return self._impl.getPropertyAsIntWithDefault(key, value)
+ def getPropertyAsList(self, key):
+ return self._impl.getPropertyAsList(key)
+
+ def getPropertyAsListWithDefault(self, key, value):
+ return self._impl.getPropertyAsListWithDefault(key, value)
+
def getPropertiesForPrefix(self, prefix):
return self._impl.getPropertiesForPrefix(prefix)