Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
pytz /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
14.07
KB
-rwxr-xr-x
2017-05-28 21:12
__init__.pyc
16.72
KB
-rw-r--r--
2017-05-28 21:12
__init__.pyo
16.72
KB
-rw-r--r--
2017-05-28 21:12
exceptions.py
1.3
KB
-rwxr-xr-x
2016-12-06 13:25
exceptions.pyc
2
KB
-rw-r--r--
2017-05-28 21:12
exceptions.pyo
2
KB
-rw-r--r--
2017-05-28 21:12
lazy.py
5.14
KB
-rwxr-xr-x
2016-12-06 13:25
lazy.pyc
6.4
KB
-rw-r--r--
2017-05-28 21:12
lazy.pyo
6.4
KB
-rw-r--r--
2017-05-28 21:12
reference.py
3.56
KB
-rwxr-xr-x
2016-12-06 13:25
reference.pyc
4.78
KB
-rw-r--r--
2017-05-28 21:12
reference.pyo
4.74
KB
-rw-r--r--
2017-05-28 21:12
tzfile.py
4.77
KB
-rwxr-xr-x
2016-12-06 13:25
tzfile.pyc
3.82
KB
-rw-r--r--
2017-05-28 21:12
tzfile.pyo
3.68
KB
-rw-r--r--
2017-05-28 21:12
tzinfo.py
18.91
KB
-rwxr-xr-x
2016-12-06 13:25
tzinfo.pyc
16.41
KB
-rw-r--r--
2017-05-28 21:12
tzinfo.pyo
16.38
KB
-rw-r--r--
2017-05-28 21:12
Save
Rename
''' 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. '''