
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1539 fd906abe-77d9-0310-91a1-e0d9ade77398
16 lines
346 B
Text
16 lines
346 B
Text
================
|
|
Stateful objects
|
|
================
|
|
|
|
($Id$)
|
|
|
|
>>> from cybertools.stateful.definition import StatesDefinition
|
|
>>> from cybertools.stateful.definition import State, Transition
|
|
>>> from cybertools.stateful.base import Stateful
|
|
|
|
>>> class Demo(Stateful):
|
|
... pass
|
|
|
|
>>> demo = Demo()
|
|
>>> demo.getState()
|
|
'started'
|