backport to python 2.6, add it travis platforms and to pypi metadata
This commit is contained in:
parent
5f28b56b9f
commit
b9c48e5af7
@ -1,5 +1,6 @@
|
||||
language: python
|
||||
python:
|
||||
- "2.6"
|
||||
- "2.7"
|
||||
- "pypy"
|
||||
install:
|
||||
|
@ -64,7 +64,7 @@ def _get_elementdict(dct, basename, excluded=None):
|
||||
if excluded is None:
|
||||
excluded = set()
|
||||
names = set(dct) - set(excluded)
|
||||
return {basename + name: dct[name] for name in names}
|
||||
return dict((basename + name, dct[name]) for name in names)
|
||||
|
||||
|
||||
def _build_request_info(request):
|
||||
|
Loading…
x
Reference in New Issue
Block a user