neutron/neutron/hacking
Nguyen Phuong An 9afb9ca598 Prevent use filter(lambda obj: test(obj), data)
In Python3 [1], if we need filter on python3, replace
filter(lambda obj: test(obj), data) with:
[obj for obj in data if test(obj)]. This patch replaces
filter function and introduces a hacking rule to prevent
using filter in future.

[1] https://wiki.openstack.org/wiki/Python3

Change-Id: I83d22108c02f8da007a7233e71a4a7fb833170ec
2016-09-14 16:23:32 +07:00
..
__init__.py Add missing translation support 2014-05-19 12:16:56 +02:00
checks.py Prevent use filter(lambda obj: test(obj), data) 2016-09-14 16:23:32 +07:00