Merge pull request #2426 from Epsirom/issue-2339

Fix "bytes aketrans" issues in Python>=3.1
This commit is contained in:
Kim Kulling
2019-05-01 23:23:45 +02:00
committed by GitHub

View File

@@ -93,7 +93,7 @@ def _is_init_type(obj):
return False
tname = obj.__class__.__name__
return not (tname[:2] == 'c_' or tname == 'Structure' \
or tname == 'POINTER') and not isinstance(obj,int)
or tname == 'POINTER') and not isinstance(obj, (int, str, bytes))
def _init(self, target = None, parent = None):
"""