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

Public Member Functions

def __init__
 
- Public Member Functions inherited from Error
def __init__
 
def __repr__
 

Data Fields

 option
 
 section
 

Detailed Description

Definition at line 139 of file ConfigParser.py.

Constructor & Destructor Documentation

def __init__ (   self,
  option,
  section,
  rawval 
)

Definition at line 140 of file ConfigParser.py.

141  def __init__(self, option, section, rawval):
142  Error.__init__(self,
143  "Value interpolation too deeply recursive:\n"
144  "\tsection: [%s]\n"
145  "\toption : %s\n"
146  "\trawval : %s\n"
147  % (section, option, rawval))
148  self.option = option
149  self.section = section

Field Documentation

option

Definition at line 147 of file ConfigParser.py.

section

Definition at line 148 of file ConfigParser.py.


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