python 3 fix: map filter to ifilter

This commit is contained in:
Peter M. Landwehr
2016-02-27 21:14:13 -08:00
parent 23d21f00f3
commit af17586581
+1
View File
@@ -34,6 +34,7 @@ if is_py3:
from io import StringIO from io import StringIO
# py3 mappings # py3 mappings
ifilter = filter
unicode = str unicode = str
bytes = bytes bytes = bytes
basestring = str basestring = str