1fe57a
diff -up Python-2.7.3/Lib/ctypes/__init__.py.rhbz814391 Python-2.7.3/Lib/ctypes/__init__.py
1fe57a
--- Python-2.7.3/Lib/ctypes/__init__.py.rhbz814391	2012-04-20 14:51:19.390990244 -0400
1fe57a
+++ Python-2.7.3/Lib/ctypes/__init__.py	2012-04-20 14:51:45.141668316 -0400
1fe57a
@@ -272,11 +272,6 @@ def _reset_cache():
1fe57a
     # _SimpleCData.c_char_p_from_param
1fe57a
     POINTER(c_char).from_param = c_char_p.from_param
1fe57a
     _pointer_type_cache[None] = c_void_p
1fe57a
-    # XXX for whatever reasons, creating the first instance of a callback
1fe57a
-    # function is needed for the unittests on Win64 to succeed.  This MAY
1fe57a
-    # be a compiler bug, since the problem occurs only when _ctypes is
1fe57a
-    # compiled with the MS SDK compiler.  Or an uninitialized variable?
1fe57a
-    CFUNCTYPE(c_int)(lambda: None)
1fe57a
 
1fe57a
 try:
1fe57a
     from _ctypes import set_conversion_mode