Exception raised when attempting to create an ambiguous wallclock time. At the end of a DST transition period, a particular wallclock time will occur twice (once before the clocks are set back, once after). Both possibilities may be correct, unless further information is supplied.
| 40 | |
| 41 | |
| 42 | class AmbiguousTimeError(InvalidTimeError): |
| 43 | '''Exception raised when attempting to create an ambiguous wallclock time. |
| 44 | |
| 45 | At the end of a DST transition period, a particular wallclock time will |
| 46 | occur twice (once before the clocks are set back, once after). Both |
| 47 | possibilities may be correct, unless further information is supplied. |
| 48 | |
| 49 | See DstTzInfo.normalize() for more info |
| 50 | ''' |
| 51 | |
| 52 | |
| 53 | class NonExistentTimeError(InvalidTimeError): |