diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/datastructures/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regressiontests/datastructures/tests.py b/tests/regressiontests/datastructures/tests.py index 62c57bc019..f5d5b91d3d 100644 --- a/tests/regressiontests/datastructures/tests.py +++ b/tests/regressiontests/datastructures/tests.py @@ -42,6 +42,8 @@ MergeDict can merge MultiValueDicts 'Simon' >>> d.getlist('name') ['Adrian', 'Simon'] +>>> list(d.iteritems()) +[('position', 'Developer'), ('name', 'Simon')] >>> d['lastname'] Traceback (most recent call last): ... |
