This function retrieves the nth sighting in self, or raises KeyError otherwise.
# - - - B i r d F o r m . _ _ g e t i t e m _ _
def __getitem__ ( self, n ):
"""Return the (n)th sighting in self
"""
return self.__sightingList[n]