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

Public Member Functions

def value_decode
 
def value_encode
 

Detailed Description

SimpleCookie
SimpleCookie supports strings as cookie values.  When setting
the value using the dictionary assignment notation, SimpleCookie
calls the builtin str() to convert the value to a string.  Values
received from HTTP are kept as strings.

Definition at line 661 of file Cookie.py.

Member Function Documentation

def value_decode (   self,
  val 
)

Definition at line 668 of file Cookie.py.

669  def value_decode(self, val):
return _unquote( val ), val
def value_encode (   self,
  val 
)

Definition at line 670 of file Cookie.py.

References locale.str().

671  def value_encode(self, val):
672  strval = str(val)
673  return strval, _quote( strval )
674 # end SimpleCookie

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