mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Make sure 'basestring', 'bytes' and 'unicode' are defined
Python 3 doesn't have 'basestring' and 'unicode'. Python 2.4 doesn't have 'bytes'
This commit is contained in:
@@ -73,6 +73,22 @@ try:
|
||||
except ImportError:
|
||||
imap = map # Python 3
|
||||
|
||||
try:
|
||||
basestring
|
||||
except NameError:
|
||||
basestring = str # Python 3
|
||||
|
||||
try:
|
||||
unicode
|
||||
except NameError:
|
||||
unicode = str # Python 3
|
||||
|
||||
try:
|
||||
bytes
|
||||
except NameError:
|
||||
bytes = str # Python 2
|
||||
|
||||
|
||||
try:
|
||||
import json
|
||||
# Detect the python-json library which is incompatible
|
||||
|
||||
Reference in New Issue
Block a user