New submission from Jackson Yang :
# 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 vari
New submission from Jackson Yang :
# Bug Description
In a multi-threaded environment, the Win32 Python3000 built-in function
"print" may give the output several times.
# How to Reproduce:
import threading
event = threading.Event()
class Test(threading.Thread):
def __init__