Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
URLError Class Reference
Inheritance diagram for URLError:
GopherError HTTPError

Public Member Functions

def __init__
 
def __str__
 

Data Fields

 reason
 

Detailed Description

Definition at line 148 of file urllib2.py.

Constructor & Destructor Documentation

def __init__ (   self,
  reason 
)

Definition at line 151 of file urllib2.py.

152  def __init__(self, reason):
153  self.reason = reason

Member Function Documentation

def __str__ (   self)

Definition at line 154 of file urllib2.py.

References HTTPResponse.reason, and URLError.reason.

155  def __str__(self):
156  return '<urlopen error %s>' % self.reason

Field Documentation

reason

Definition at line 152 of file urllib2.py.


The documentation for this class was generated from the following file: