Current Path: > > opt > alt > python33 > lib64 > python3.3 > urllib > __pycache__ >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__init__.cpython-33.pyc | File | 147 bytes | April 17 2024 16:58:26. | |
__init__.cpython-33.pyo | File | 147 bytes | April 17 2024 16:58:26. | |
error.cpython-33.pyc | File | 3738 bytes | April 17 2024 16:58:26. | |
error.cpython-33.pyo | File | 3738 bytes | April 17 2024 16:58:26. | |
parse.cpython-33.pyc | File | 41220 bytes | April 17 2024 16:58:26. | |
parse.cpython-33.pyo | File | 41220 bytes | April 17 2024 16:58:26. | |
request.cpython-33.pyc | File | 107612 bytes | April 17 2024 16:58:26. | |
request.cpython-33.pyo | File | 107414 bytes | April 17 2024 16:58:22. | |
response.cpython-33.pyc | File | 5987 bytes | April 17 2024 16:58:26. | |
response.cpython-33.pyo | File | 5987 bytes | April 17 2024 16:58:26. | |
robotparser.cpython-33.pyc | File | 9389 bytes | April 17 2024 16:58:26. | |
robotparser.cpython-33.pyo | File | 9389 bytes | April 17 2024 16:58:26. |
� ��f c @ sp d Z d d l Z d d d g Z Gd d � d e � Z Gd d � d e e j j � Z Gd d � d e � Z d S( u� Exception classes raised by urllib. The base exception class is URLError, which inherits from IOError. It doesn't define any behavior of its own, but is the base class for all exceptions defined in this package. HTTPError is an exception class that is also a valid HTTP response instance. It behaves this way because HTTP protocol errors are valid responses, with a status code, headers, and a body. In some contexts, an application may want to handle an exception like a regular response. i Nu URLErroru HTTPErroru ContentTooShortErrorc B s/ | Ee Z d Z d d d � Z d d � Z d S( u URLErrorc C s1 | f | _ | | _ | d k r- | | _ n d S( N( u argsu reasonu Noneu filename( u selfu reasonu filename( ( u1 /opt/alt/python33/lib64/python3.3/urllib/error.pyu __init__ s u URLError.__init__c C s d | j S( Nu <urlopen error %s>( u reason( u self( ( u1 /opt/alt/python33/lib64/python3.3/urllib/error.pyu __str__# s u URLError.__str__N( u __name__u __module__u __qualname__u Noneu __init__u __str__( u __locals__( ( u1 /opt/alt/python33/lib64/python3.3/urllib/error.pyu URLError s c B s_ | Ee Z d Z d Z e j j j Z d d � Z d d � Z e d d � � Z d d � Z d S( u HTTPErroruB Raised when HTTP error occurs, but also acts like non-error returnc C sV | | _ | | _ | | _ | | _ | | _ | d k rR | j | | | | � n d S( N( u codeu msgu hdrsu fpu filenameu Noneu _HTTPError__super_init( u selfu urlu codeu msgu hdrsu fp( ( u1 /opt/alt/python33/lib64/python3.3/urllib/error.pyu __init__* s u HTTPError.__init__c C s d | j | j f S( Nu HTTP Error %s: %s( u codeu msg( u self( ( u1 /opt/alt/python33/lib64/python3.3/urllib/error.pyu __str__7 s u HTTPError.__str__c C s | j S( N( u msg( u self( ( u1 /opt/alt/python33/lib64/python3.3/urllib/error.pyu reason<