Package gromacs :: Module utilities :: Class AttributeDict
[hide private]
[frames] | no frames]

Class AttributeDict

source code

object --+    
         |    
      dict --+
             |
            AttributeDict

A dictionary with pythonic access to keys as attributes --- useful for interactive work.
Instance Methods [hide private]
 
__getattribute__(self, x)
x.__getattribute__('name') <==> x.name
source code
 
__setattr__(self, name, value)
x.__setattr__('name', value) <==> x.name = value
source code
 
__getstate__(self) source code
 
__setstate__(self, state) source code

Inherited from dict: __cmp__, __contains__, __delitem__, __eq__, __ge__, __getitem__, __gt__, __hash__, __init__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __repr__, __setitem__, clear, copy, fromkeys, get, has_key, items, iteritems, iterkeys, itervalues, keys, pop, popitem, setdefault, update, values

Inherited from object: __delattr__, __reduce__, __reduce_ex__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__getattribute__(self, x)

source code 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__
(inherited documentation)

__setattr__(self, name, value)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)