Next / Previous / Contents / Shipman's homepage

6.2. BirdNoteSet.addDay(): Add one day list

This method adds a DayNotes object to self.__dayList. There is no requirement that the new day be in chronological order relative to other contained days.

birdnotes.py
# - - -   B i r d N o t e S e t . a d d D a y

    def addDay ( self, dayNotes ):
        """Add a new day's notes to self.
        """
        self.__dayList.append ( dayNotes )