From ed3c144a7917bae1d06d4a4f74a639f611f69447 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 23 May 2010 15:36:15 +0000 Subject: [PATCH] Apparently we don't need these two methods (see Gerald in mailing list, 05/23/2010) svn: r15461 --- src/gen/proxy/living.py | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/gen/proxy/living.py b/src/gen/proxy/living.py index 9a332a1c0..fd99452a1 100644 --- a/src/gen/proxy/living.py +++ b/src/gen/proxy/living.py @@ -119,26 +119,6 @@ class LivingProxyDb(ProxyDbBase): if person: yield person - def iter_person_handles(self): - """ - Protected version of iter_person_handles - """ - for handle in self.db.iter_person_handles(): - person = self.get_person_from_handle(handle) - if person: - yield handle - - def get_person_handles(self): - """ - Protected version of get_person_handles - """ - handles = [] - for handle in self.db.get_person_handles(): - person = self.get_person_from_handle(handle) - if person: - handles.append(handle) - return handles - def get_person_from_gramps_id(self, val): """ Finds a Person in the database from the passed GRAMPS ID.