def add_custom_attributes(self, key, value):
     AbstractPersonalData.add_custom_attributes(self, key, value)
     self.config.set(SECTION_CUSTOM, key, value.encode(self.encoding))
 def add_custom_attributes(self, pair):
     """sets new value for custom_attributes"""
     AbstractPersonalData.add_custom_attributes(self, pair)
     key, value = pair
     self.custom_attributes[key] = value
 def add_custom_attributes(self, key, value):
     AbstractPersonalData.add_custom_attributes(self, key, value)
     self.custom_attributes[key] = value
 def add_custom_attributes(self, pair):
     """sets new value for custom_attributes"""
     AbstractPersonalData.add_custom_attributes(self, pair)
     key, value = pair
     self.config.set(SECTION_CUSTOM, key, value.encode(self.encoding))