def __init__(self, callNumb, titl, subj, description, distributor, notes, series, label): Media.__init__(self, callNumb, titl, subj, notes) self.description = description self.distributor = distributor self.series = series self.label = label
def __init__(self, callNumb, titl, subj, author, description, publisher, city, year, series, notes): Media.__init__(self, callNumb, titl, subj, notes) self.author = author self.description = description self.publisher = publisher self.city = city self.year = year self.series = series
def __init__(self, callNumb, titl, subj, author, description, publisher, publishing_history, series, notes, related_titles, other_forms_of_title, govt_doc_number): Media.__init__(self, callNumb, titl, subj, notes) self.author = author self.description = description self.publisher = publisher self.publishing_history = publishing_history self.series = series self.related_titles = related_titles self.other_forms_of_title = other_forms_of_title self.govt_doc_number = govt_doc_number
def __init__(self, callNumb, titl, subj, director, notes, year): Media.__init__(self, callNumb, titl, subj, notes) self.director = director self.year = year