From d9f809746bba7a818e584a5729ecc4b664efb78f Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 31 Oct 2007 17:11:55 -0400 Subject: Completely remove an attribute --- ipa-python/entity.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ipa-python/entity.py') diff --git a/ipa-python/entity.py b/ipa-python/entity.py index 7afc3e63a..ff6478c41 100644 --- a/ipa-python/entity.py +++ b/ipa-python/entity.py @@ -105,6 +105,11 @@ class Entity: setValues = setValue + def delValue(self,name): + """Remove the attribute named name.""" + if self.data.get(name,None): + del self.data[name] + def toTupleList(self): """Convert the attrs and values to a list of 2-tuples. The first element of the tuple is the attribute name. The second element is either a -- cgit