While troubleshooting a separate issue, I found that in pytz the timezone 'Asia/Jakarta' is UTC offset by 7h 7m
Why is this? By everything i can find, the offset for Asia/Jakarta should only be 7h
import pytz
x = pytz.timezone('Asia/Jakarta')
x._utcoffset
# datetime.timedelta(0, 25620)
25620s = 427 min or 7 hr and 7 min
Am I missing something?