/usr/lib/python2.6/site-packages/pytz
NameSizeModeActions
zoneinfo/-0755rm
exceptions.py13330644editdlrm
exceptions.pyc20190644editdlrm
lazy.py52630644editdlrm
lazy.pyc65380644editdlrm
reference.py36490755editdlrm
reference.pyc49120644editdlrm
reference.pyo48680644editdlrm
tzfile.py43400755editdlrm
tzfile.pyc32770644editdlrm
tzfile.pyo31830644editdlrm
tzinfo.py183800755editdlrm
tzinfo.pyc166460644editdlrm
tzinfo.pyo166460644editdlrm
__init__.py131440755editdlrm
__init__.pyc162760644editdlrm
__init__.pyo162760644editdlrm
Edit: /usr/lib/python2.6/site-packages/pytz/exceptions.py (1333B)
''' Custom exceptions raised by pytz. ''' __all__ = [ 'UnknownTimeZoneError', 'InvalidTimeError', 'AmbiguousTimeError', 'NonExistentTimeError', ] class UnknownTimeZoneError(KeyError): '''Exception raised when pytz is passed an unknown timezone. >>> isinstance(UnknownTimeZoneError(), LookupError) True This class is actually a subclass of KeyError to provide backwards compatibility with code relying on the undocumented behavior of earlier pytz releases. >>> isinstance(UnknownTimeZoneError(), KeyError) True ''' pass class InvalidTimeError(Exception): '''Base class for invalid time exceptions.''' class AmbiguousTimeError(InvalidTimeError): '''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. See DstTzInfo.normalize() for more info ''' class NonExistentTimeError(InvalidTimeError): '''Exception raised when attempting to create a wallclock time that cannot exist. At the start of a DST transition period, the wallclock time jumps forward. The instants jumped over never occur. '''