3.Why does "jan 1st 1970" gets added in the startime field in datastore when I am doing the below statements?
(hour,min) = self.request.get('starttime').split(":")
#if either of them is null or empty string then int will throw exception
if hour and min :
datastoremodel.starttime = datetime.time(int(hour), int(min))
Although when I retrieve it only time comes through? I wonder what date is doing in datastore? Any clues?