1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Python 3: there's no itertools.imap

Because the builtin map() acts like an iterator already.
This commit is contained in:
Marius Gedminas 2015-09-23 09:59:59 +03:00
parent 6708d56a21
commit 2c4982b58d

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