Home | History | Annotate | Download | only in python2.7

Lines Matching refs:tzoffset

915     tzoffset = None
918 tzoffset = _timezones[tz]
921 tzoffset = int(tz)
925 if tzoffset:
926 if tzoffset < 0:
928 tzoffset = -tzoffset
931 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
932 return (yy, mm, dd, thh, tmm, tss, 0, 1, 0, tzoffset)