Blame SOURCES/00155-avoid-ctypes-thunks.patch

036b9c
diff -up Python-3.2.3/Lib/ctypes/__init__.py.rhbz814391 Python-3.2.3/Lib/ctypes/__init__.py
036b9c
--- Python-3.2.3/Lib/ctypes/__init__.py.rhbz814391	2012-04-20 15:12:49.017867692 -0400
036b9c
+++ Python-3.2.3/Lib/ctypes/__init__.py	2012-04-20 15:15:09.501111408 -0400
036b9c
@@ -275,11 +275,6 @@ def _reset_cache():
036b9c
     # _SimpleCData.c_char_p_from_param
036b9c
     POINTER(c_char).from_param = c_char_p.from_param
036b9c
     _pointer_type_cache[None] = c_void_p
036b9c
-    # XXX for whatever reasons, creating the first instance of a callback
036b9c
-    # function is needed for the unittests on Win64 to succeed.  This MAY
036b9c
-    # be a compiler bug, since the problem occurs only when _ctypes is
036b9c
-    # compiled with the MS SDK compiler.  Or an uninitialized variable?
036b9c
-    CFUNCTYPE(c_int)(lambda: None)
036b9c
 
036b9c
 def create_unicode_buffer(init, size=None):
036b9c
     """create_unicode_buffer(aString) -> character array