Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
MiniFieldStorage Class Reference

Public Member Functions

def __init__
 
def __repr__
 

Data Fields

 name
 
 value
 

Static Public Attributes

 filename = None
 
 list = None
 
 type = None
 
 file = None
 
dictionary type_options = {}
 
 disposition = None
 
dictionary disposition_options = {}
 
dictionary headers = {}
 

Detailed Description

Like FieldStorage, for use when no file uploads are possible.

Definition at line 343 of file cgi.py.

Constructor & Destructor Documentation

def __init__ (   self,
  name,
  value 
)
Constructor from field name and value.

Definition at line 357 of file cgi.py.

358  def __init__(self, name, value):
359  """Constructor from field name and value."""
360  self.name = name
361  self.value = value
362  # self.file = StringIO(value)

Member Function Documentation

def __repr__ (   self)
Return printable representation.

Definition at line 363 of file cgi.py.

References MiniFieldStorage.name, and MiniFieldStorage.value.

364  def __repr__(self):
365  """Return printable representation."""
366  return "MiniFieldStorage(%s, %s)" % (`self.name`, `self.value`)
367 

Field Documentation

disposition = None
static

Definition at line 353 of file cgi.py.

dictionary disposition_options = {}
static

Definition at line 354 of file cgi.py.

file = None
static

Definition at line 351 of file cgi.py.

filename = None
static

Definition at line 348 of file cgi.py.

dictionary headers = {}
static

Definition at line 355 of file cgi.py.

list = None
static

Definition at line 349 of file cgi.py.

name

Definition at line 359 of file cgi.py.

type = None
static

Definition at line 350 of file cgi.py.

dictionary type_options = {}
static

Definition at line 352 of file cgi.py.

value

Definition at line 360 of file cgi.py.


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