Closed
Description
I'm not sure if it is an issue of DOCs or code.
Docs say that tz_convert
"Convert the axis to target time zone. If it is time zone naive, it will be localized to the passed time zone."
But the code in contrast raises an exception:
tmp = pd.Series([0], index=[pd.Timestamp('2008-12-16 13:10:00')])
tmp.tz_convert('UTC')
Results in TypeError: Cannot convert tz-naive timestamps, use tz_localize to localize