app/__init__.py
author |
Sverre Rabbelier <srabbelier@gmail.com> |
|
Fri, 12 Dec 2008 00:34:12 +0000 |
changeset 721 |
6f1d29857072 |
parent 63 |
9b1909e46633
|
permissions |
-rw-r--r-- |
Added a filter method to dicts
The best way to explain this is probably with an example:
>>> split({'foo':'bar', 'bar':['one', 'two'], 'baz': ['three', 'four']})
[{'bar': 'one', 'foo': 'bar', 'baz': 'three'},
{'bar': 'two', 'foo': 'bar', 'baz': 'three'},
{'bar': 'one', 'foo': 'bar', 'baz': 'four'},
{'bar': 'two', 'foo': 'bar', 'baz': 'four'}]
Patch by: Sverre Rabbelier