New submission from Jackson Yang <jackson.y...@augmentum.com>: # Python 3.1.2rc1 (r312rc1:78742, Mar 7 2010, 07:49:40) # [MSC v.1500 32 bit (Intel)] on win32 import ctypes
class T(ctypes.Structure): _fields_ = ( ('member', ctypes.c_char * 16), ) # dereference a c_char_Array variable would return <bytes> print('%r'%((ctypes.c_char * 16)()[:])) # dereference from a c_char_Array member would return <str>, which is buggy print('%r'%(T().member[:])) ---------- assignee: theller components: ctypes messages: 101214 nosy: nullnil, theller severity: normal status: open title: inconsistency behavior in ctypes.c_char_p dereferencing type: behavior versions: Python 3.2 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8161> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com