Next / Previous / Contents / Shipman's homepage

11.4. BirdForm.genSightings()

Generates the sightings in the order they were added. This can be implemented by returning an iterator for the .__sightingList attribute, which contains the sightings.

birdnotes.py
# - - -   B i r d F o r m . g e n S i g h t i n g s

    def genSightings ( self ):
        """Generate the sightings in self.
        """
        return  iter ( self.__sightingList )