From: Thomas Heller Date: Tue, 15 Jul 2008 20:18:46 +0000 (+0000) Subject: Fix test on 64-bit platforms. X-Git-Tag: v2.6b2~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2affb40e70808c3613708ab2e360b5070e1583f7;p=thirdparty%2FPython%2Fcpython.git Fix test on 64-bit platforms. --- diff --git a/Lib/ctypes/test/test_pep3118.py b/Lib/ctypes/test/test_pep3118.py index 119b0ada87a0..4ff2c3ed367b 100644 --- a/Lib/ctypes/test/test_pep3118.py +++ b/Lib/ctypes/test/test_pep3118.py @@ -113,7 +113,7 @@ class Incomplete(Structure): class Complete(Structure): pass PComplete = POINTER(Complete) -Complete._fields_ = [("a", c_int)] +Complete._fields_ = [("a", c_long)] ################################################################ #