pyre.config.events

Module Contents

class pyre.config.events.Event(locator, **kwds)

The base class for all configuration events

locator
class pyre.config.events.Command(command, **kwds)

Bases: pyre.config.events.Event

A command

command
identify(self, inspector, **kwds)

Ask {inspector} to process a {Command}

__str__(self)
class pyre.config.events.Assignment(key, value, **kwds)

Bases: pyre.config.events.Event

A request to bind a {key} to a {value}

key
value
identify(self, inspector, **kwds)

Ask {inspector} to process an {Assignment}

__str__(self)
class pyre.config.events.ConditionalAssignment(component, condition, **kwds)

Bases: pyre.config.events.Assignment

A request to bind a {key} to a {value} subject to a condition

component
conditions
identify(self, inspector, **kwds)

Ask {inspector} to process a {ConditionalAssignment}

__str__(self)
class pyre.config.events.Source(source, **kwds)

Bases: pyre.config.events.Event

A request to load configuration settings from a named source

source
identify(self, inspector, **kwds)

Ask {inspector} to process a {Source} event

__str__(self)