thirdparty/google_appengine/lib/webob/docs/test-file.txt
author |
Sverre Rabbelier <srabbelier@gmail.com> |
|
Fri, 12 Dec 2008 00:34:12 +0000 |
changeset 721 |
6f1d29857072 |
parent 109 |
620f9b141567
|
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
109
620f9b141567
Load ../../google_appengine into trunk/thirdparty/google_appengine.
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
1 |
This is a test. Hello test people!
|