Package svnmailer :: Package settings :: Module _typedstruct :: Class Descriptor
[show private | hide private]
[frames | no frames]

Class Descriptor

object --+
         |
        Descriptor


Member descriptor class
Method Summary
  __init__(self, name, private, member)
Initialization
  __delete__(self, instance)
Deletes the value from the dict (keeps the name)
  __get__(self, instance, owner)
Gets the member value
  __set__(self, instance, value)
Sets the member 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...
  __repr__(x)
x.__repr__() <==> repr(x)...
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value...
  __str__(x)
x.__str__() <==> str(x)...
    Inherited from type
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T...

Instance Variable Summary
Member member: The actual member instance
str name: The name of the member
Private private: The private data container

Method Details

__init__(self, name, private, member)
(Constructor)

Initialization
Parameters:
name - The name of the member
           (type=str)
private - The private data container
           (type=Private)
member - The actual member instance
           (type=Member)
Overrides:
__builtin__.object.__init__

__delete__(self, instance)

Deletes the value from the dict (keeps the name)

__get__(self, instance, owner)

Gets the member value

__set__(self, instance, value)

Sets the member value

Instance Variable Details

member

The actual member instance
Type:
Member

name

The name of the member
Type:
str

private

The private data container
Type:
Private

Generated by Epydoc 2.0 on Sun Sep 25 20:49:16 2005 http://epydoc.sf.net