@@ -357,7 +357,7 @@ def __init__(self, model='self', states=None, initial='initial', transitions=Non
357
357
states (list): A list of valid states. Each element can be either a
358
358
string or a State instance. If string, a new generic State
359
359
instance will be created that has the same name as the string.
360
- initial (string): The initial state of the Machine.
360
+ initial (string or State ): The initial state of the Machine.
361
361
transitions (list): An optional list of transitions. Each element
362
362
is a dictionary of named arguments to be passed onto the
363
363
Transition initializer.
@@ -408,6 +408,7 @@ def __init__(self, model='self', states=None, initial='initial', transitions=Non
408
408
self ._after_state_change = []
409
409
self ._prepare_event = []
410
410
self ._finalize_event = []
411
+ self ._initial = None
411
412
412
413
self .states = OrderedDict ()
413
414
self .events = {}
@@ -447,9 +448,16 @@ def __init__(self, model='self', states=None, initial='initial', transitions=Non
447
448
self .add_states (states )
448
449
449
450
if initial is not None :
450
- if initial not in self .states :
451
- self .add_states (initial )
452
- self ._initial = initial
451
+ if isinstance (initial , State ):
452
+ if initial .name not in self .states :
453
+ self .add_state (initial )
454
+ else :
455
+ assert self ._has_state (initial )
456
+ self ._initial = initial .name
457
+ else :
458
+ if initial not in self .states :
459
+ self .add_state (initial )
460
+ self ._initial = initial
453
461
454
462
if transitions is not None :
455
463
transitions = listify (transitions )
0 commit comments