Suor / handy

Handy django tools
BSD 3-Clause "New" or "Revised" License
85 stars 14 forks source link

Update with python 3 compatible syntax. #12

Closed hayd closed 9 years ago

hayd commented 9 years ago

Test against python 3.3 and 3.4 on travis.

One change is to use list comprehension rather than map, as map returns an iterator in python 3. This is more efficient than doing list(map(...)) which creates an additional copy in python 2.

Suor commented 9 years ago

Merged, thanks.