I get the following output. Is this the intended behavior of pytz? I live in US/Eastern timezone, by the way. Why is EST giving -04:56 as the timezone offset?
import datetime
import pytz
a = datetime.datetime.now()
tz_est = pytz.timezone("US/Eastern")
a = a.replace(tzinfo=tz_est)
print("EST")
print(a)
print("\n")
b = datetime.datetime.now(pytz.timezone("US/Pacific"))
print("PST - version 1")
print(b)
print("\n")
tz_pst = pytz.timezone('US/Pacific')
c = tz_pst.normalize(a)
print("PST - version 2")
print(c)
print("\n")
EST 2017-03-16 22:52:27.616000-04:56
PST - version 1 2017-03-16 19:52:27.617000-07:00
PST - version 2 2017-03-16 20:48:27.616000-07:00