Merge pull request #2426 from Epsirom/issue-2339
Fix "bytes aketrans" issues in Python>=3.1pull/2429/head^2
commit
3e57510af5
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue