Apparently we don't need these two methods (see Gerald in mailing list, 05/23/2010)

svn: r15461
This commit is contained in:
Doug Blank 2010-05-23 15:36:15 +00:00
parent ed73f393ed
commit ed3c144a79

View File

@ -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.