Apparently we don't need these two methods (see Gerald in mailing list, 05/23/2010)
svn: r15461
This commit is contained in:
parent
ed73f393ed
commit
ed3c144a79
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user