Add release note for repeat improvement

We added new section 'permutations' for "repeat"
function to decide whether to iterate nested
the over all the permutations of the elements
in the given lists. This patch adds the release note
for the new feature.

Change-Id: I18d69c44e8731c4caf77494b4543ea326435e74a
Blueprint: improve-repeat-function
This commit is contained in:
huangtianhua 2017-07-20 11:17:16 +08:00
parent ba7f7888f6
commit 56d5d0f9c7
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
---
features:
- Added new section ``permutations`` for ``repeat`` function, to decide
whether to iterate nested the over all the permutations of the elements
in the given lists. If 'permutations' is not specified, we set the default
value to true to compatible with before behavior. The args have to be lists
instead of dicts if 'permutations' is False because keys in a dict are
unordered, and the list args all have to be of the same length.