SYMBOL INDEX (20 symbols across 1 files) FILE: familytreemaker.py class Person (line 37) | class Person: method __init__ (line 50) | def __init__(self, desc): method __str__ (line 78) | def __str__(self): method dump (line 81) | def dump(self): method graphviz (line 85) | def graphviz(self): class Household (line 103) | class Household: method __init__ (line 111) | def __init__(self): method __str__ (line 116) | def __str__(self): method isempty (line 121) | def isempty(self): class Family (line 126) | class Family: method add_person (line 139) | def add_person(self, string): method add_household (line 154) | def add_household(self, h): method find_person (line 170) | def find_person(self, name): method populate (line 183) | def populate(self, f): method find_first_ancestor (line 210) | def find_first_ancestor(self): method next_generation (line 224) | def next_generation(self, gen): method get_spouse (line 241) | def get_spouse(household, person): method display_generation (line 248) | def display_generation(self, gen): method output_descending_tree (line 322) | def output_descending_tree(self, ancestor): function main (line 344) | def main():