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

Public Member Functions

def __init__
 
def __str__
 

Data Fields

 filename
 
 exc
 
 value
 
 tb
 

Detailed Description

Errors that occurred while trying to import something to document it.

Definition at line 184 of file pydoc.py.

Constructor & Destructor Documentation

def __init__ (   self,
  filename,
  exc,
  value,
  tb 
)

Definition at line 186 of file pydoc.py.

187  def __init__(self, filename, (exc, value, tb)):
188  self.filename = filename
189  self.exc = exc
190  self.value = value
191  self.tb = tb

Member Function Documentation

def __str__ (   self)

Definition at line 192 of file pydoc.py.

References ErrorDuringImport.exc, NetrcParseError.filename, GzipFile.filename, ParsingError.filename, MissingSectionHeaderError.filename, ErrorDuringImport.filename, InteractiveConsole.filename, MiniFieldStorage.filename, FieldStorage.filename, _Stop.value, ErrorDuringImport.value, MiniFieldStorage.value, and Morsel.value.

193  def __str__(self):
194  exc = self.exc
195  if type(exc) is types.ClassType:
196  exc = exc.__name__
197  return 'problem in %s - %s: %s' % (self.filename, exc, self.value)

Field Documentation

exc

Definition at line 188 of file pydoc.py.

filename

Definition at line 187 of file pydoc.py.

tb

Definition at line 190 of file pydoc.py.

value

Definition at line 189 of file pydoc.py.


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