implemented loop pausing (#17289)

* implemented loop pausing

- added loop pause to changelog
- only pause between iterations, avoid 1st/last
- added example to docs

* fixed note placement

* else

* added docs for loop_control: label
This commit is contained in:
Brian Coca 2016-08-31 16:09:37 -04:00 committed by GitHub
parent e6e541fcb3
commit f39799fbcd
4 changed files with 42 additions and 0 deletions

View file

@ -30,6 +30,7 @@ class LoopControl(Base):
_loop_var = FieldAttribute(isa='str')
_label = FieldAttribute(isa='str')
_pause = FieldAttribute(isa='int')
def __init__(self):
super(LoopControl, self).__init__()