Merge pull request #229 from pmlandwehr/patch-1

python 3 fix: map filter to ifilter
This commit is contained in:
2016-02-28 00:20:37 -05:00
+1
View File
@@ -34,6 +34,7 @@ if is_py3:
from io import StringIO
# py3 mappings
ifilter = filter
unicode = str
bytes = bytes
basestring = str