Package svnmailer :: Module struct :: Class Struct
[show private | hide private]
[frames | no frames]

Class Struct

object --+
         |
        Struct


General structure stub
Method Summary
  __init__(self, _charset_, **kwargs)
Stub Initialization
  __new__(cls, _charset_, **kwargs)
Object creation (Static method)
str __repr__(self)
Representation for debugging purposes
  _set_(self, name, value)
Set the self.name = value
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name...
  __getattribute__(...)
x.__getattribute__('name') <==> x.name...
  __hash__(x)
x.__hash__() <==> hash(x)...
  __reduce__(...)
helper for pickle...
  __reduce_ex__(...)
helper for pickle...
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value...
  __str__(x)
x.__str__() <==> str(x)...

Property Summary
  _dict_

Class Variable Summary
list __slots__ = []
dict _aliases_: aliases for member names (recognized by the _set_ method)
NoneType _members_ = None                                                                  
NoneType _private_ = None                                                                  

Instance Method Details

__init__(self, _charset_=None, **kwargs)
(Constructor)

Stub Initialization
Parameters:
_charset_ - unused, but consistent to __new__
           (type=None)
Overrides:
__builtin__.object.__init__

__repr__(self)
(Representation operator)

Representation for debugging purposes
Returns:
A pythonic representation of the struct
           (type=str)
Overrides:
__builtin__.object.__repr__

_set_(self, name, value)

Set the self.name = value
Parameters:
name - Name of the struct member
           (type=str)
value - Value of the struct member
           (type=any)
Raises:
AttributeError - The specified struct member doesn't exist (nor is it an alias)

Static Method Details

__new__(cls, _charset_='us-ascii', **kwargs)

Object creation
Parameters:
_charset_ - The charset to use
           (type=str)
Overrides:
__builtin__.type.__new__

Property Details

_dict_

Get Method:
unknown-1076925524(...)

Class Variable Details

__slots__

Type:
list
Value:
[]                                                                     

_aliases_

aliases for member names (recognized by the _set_ method)
Type:
dict
Value:
{}                                                                     

_members_

Type:
NoneType
Value:
None                                                                  

_private_

Type:
NoneType
Value:
None                                                                  

Generated by Epydoc 2.0 on Mon Feb 14 16:49:17 2005 http://epydoc.sf.net