I was wondering whether python makes a distinction between left-hand (sinistral) and right-hand (dextral) timestamps. This becomes a problem when localizing timestamps on DST days.
Say I have right-hand stamped half-hourly values in local European time, where a DST change occured from hour 02:00 to hour 03:00 on March 30th 2014.
2014-03-30 00:30:00
2014-03-30 01:00:00
2014-03-30 01:30:00
2014-03-30 02:00:00
2014-03-30 03:30:00
2014-03-30 04:00:00
If I want to localize these timestamps, I naturally get an error:
NonExistentTimeError: 2014-03-30 02:00:00
since there is no timestamp 02:00 in my local timezone on that day. So I wonder whether python can make a distinction between left/righ-hand timestamps?