Package glitter :: Package utils :: Module objects :: Class State
[hide private]
[frames] | no frames]

Class State

source code

object --+    
         |    
  GLObject --+
             |
object --+   |
         |   |
StateMixin --+
             |
            State

Context manager to add binding semantics to context property changes.

To set properties of the context and automatically reset it to its old value later, use a with statement with a State object.

Instance Methods [hide private]
 
__init__(self, context=None, do_enter_exit=False, **kwargs)
Create a State object for use in with statements.
source code
 
__enter__(self) source code
 
__exit__(self, type, value, traceback) source code
 
__getattr__(self, key) source code
 
__setattr__(self, key, value)
x.__setattr__('name', value) <==> x.name = value
source code

Inherited from StateMixin: __call__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]

Inherited from GLObject (private): _context

Properties [hide private]

Inherited from GLObject: context

Inherited from object: __class__

Method Details [hide private]

__init__(self, context=None, do_enter_exit=False, **kwargs)
(Constructor)

source code 

Create a State object for use in with statements.

When entering the with statement, the properties of context given in kwargs will be set to their respective values. On exiting the with statement, the old value will be restored.

If context defines __enter__ and __exit__ methods, this will be called on entering and exiting the with block, respectively, if do_enter_exit is True.

No guarantee is made about the order in which the properties are set, but they are guaranteed to be reset in reverse order.

For convenience, __getattr__ and __setattr__ calls are redirected to context, so that with State(...) as x: works as expected.

Parameters:
  • context (Context or any other object with attributes) - The context object on which to set the properties, or the current context if it is None.
  • do_enter_exit (bool) - Whether to call context's __enter__ and __exit__ methods.
  • kwargs (dict) - A dictionary of property names and their values.
Overrides: object.__init__

__setattr__(self, key, value)

source code 

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

Overrides: object.__setattr__
(inherited documentation)