def date(self): return date_fromtimestamp(self._commit.commit_time, self._commit.commit_timezone)
def last_change(self): """ Returns last change made on this repository as datetime object """ return date_fromtimestamp(self._get_mtime(), makedate()[1])
def date(self): return date_fromtimestamp( getattr(self._commit, self._date_property), getattr(self._commit, self._date_tz_property))
def date(self): return date_fromtimestamp(*self._ctx.date())
def date(self): return date_fromtimestamp(getattr(self._commit, self._date_property), getattr(self._commit, self._date_tz_property))