From af17586581ebf3e8b53ce34c8b9053d5260e2867 Mon Sep 17 00:00:00 2001 From: "Peter M. Landwehr" Date: Sat, 27 Feb 2016 21:14:13 -0800 Subject: [PATCH] python 3 fix: map filter to ifilter --- tablib/compat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tablib/compat.py b/tablib/compat.py index e03526d..2593e36 100644 --- a/tablib/compat.py +++ b/tablib/compat.py @@ -34,6 +34,7 @@ if is_py3: from io import StringIO # py3 mappings + ifilter = filter unicode = str bytes = bytes basestring = str