Comment 2 for bug 1678858

Revision history for this message
Barry Warsaw (barry) wrote :

We ran into this too, and it's a change from 2016.10:

(pytz) % pip install --quiet pytz
(pytz) % python -c "import pytz; print(repr(pytz.timezone('Asia/Tokyo')))"
<DstTzInfo 'Asia/Tokyo' LMT+9:19:00 STD>
(pytz) % pip uninstall --quiet --yes pytz
(pytz) % pip install --quiet pytz==2016.10
(pytz) % python -c "import pytz; print(repr(pytz.timezone('Asia/Tokyo')))"
<DstTzInfo 'Asia/Tokyo' JST+9:00:00 STD>