Python 3: there's no itertools.imap

Because the builtin map() acts like an iterator already.
pull/4420/head
Marius Gedminas 2015-09-23 09:59:59 +03:00
parent 6708d56a21
commit 2c4982b58d
1 changed files with 6 additions and 1 deletions

View File

@ -66,7 +66,12 @@ import grp
import pwd
import platform
import errno
from itertools import imap, repeat
from itertools import repeat
try:
from itertools import imap # Python 2
except ImportError:
imap = map # Python 3
try:
import json