Lines Matching refs:dstoff
4801 dstoff = datetime(2002, 10, 27, 1) variable in TestTimezoneConversions
4806 def checkinside(self, dt, tz, utc, dston, dstoff): argument
4847 if dt.date() == dstoff.date() and dt.hour == 0:
4876 dstoff = self.dstoff.replace(tzinfo=tz)
4883 self.checkinside(dston, tz, utc, dston, dstoff)
4884 for during in dston + delta, dstoff - delta:
4885 self.checkinside(during, tz, utc, dston, dstoff)
4887 self.checkoutside(dstoff, tz, utc)
4888 for outside in dston - delta, dstoff + delta:
4948 first_std_hour = self.dstoff - timedelta(hours=2) # 23:MM
4957 expectedbase = self.dstoff.replace(hour=tzhour)
5035 start = self.dstoff.replace(hour=4, tzinfo=Eastern)