]> git.ipfire.org Git - ipfire-3.x.git/blame - python/patches/00155-avoid-ctypes-thunks.patch
python: Update to 2.7.5.
[ipfire-3.x.git] / python / patches / 00155-avoid-ctypes-thunks.patch
CommitLineData
48d9a6a0
MT
1diff -up Python-2.7.3/Lib/ctypes/__init__.py.rhbz814391 Python-2.7.3/Lib/ctypes/__init__.py
2--- Python-2.7.3/Lib/ctypes/__init__.py.rhbz814391 2012-04-20 14:51:19.390990244 -0400
3+++ Python-2.7.3/Lib/ctypes/__init__.py 2012-04-20 14:51:45.141668316 -0400
4@@ -272,11 +272,6 @@ def _reset_cache():
5 # _SimpleCData.c_char_p_from_param
6 POINTER(c_char).from_param = c_char_p.from_param
7 _pointer_type_cache[None] = c_void_p
8- # XXX for whatever reasons, creating the first instance of a callback
9- # function is needed for the unittests on Win64 to succeed. This MAY
10- # be a compiler bug, since the problem occurs only when _ctypes is
11- # compiled with the MS SDK compiler. Or an uninitialized variable?
12- CFUNCTYPE(c_int)(lambda: None)
13
14 try:
15 from _ctypes import set_conversion_mode