summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-07-15 20:23:33 (GMT)
committerThomas Heller <theller@ctypes.org>2008-07-15 20:23:33 (GMT)
commitf70e195927d475b6cc522f8c9ee51f5db97f7e0c (patch)
treeccbcc77124edb76362ec7281b2dad8d6268abce8 /Lib/ctypes/test
parent15383a08aa192247de222e4c1a29b6c4b19dbc26 (diff)
downloadcpython-f70e195927d475b6cc522f8c9ee51f5db97f7e0c.zip
cpython-f70e195927d475b6cc522f8c9ee51f5db97f7e0c.tar.gz
cpython-f70e195927d475b6cc522f8c9ee51f5db97f7e0c.tar.bz2
Merged revisions 64979 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64979 | thomas.heller | 2008-07-15 22:18:46 +0200 (Tue, 15 Jul 2008) | 1 line Fix test on 64-bit platforms. ........
Diffstat (limited to 'Lib/ctypes/test')
-rw-r--r--Lib/ctypes/test/test_pep3118.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_pep3118.py b/Lib/ctypes/test/test_pep3118.py
index 9a830e9..7a77f4c 100644
--- a/Lib/ctypes/test/test_pep3118.py
+++ b/Lib/ctypes/test/test_pep3118.py
@@ -92,7 +92,7 @@ class Incomplete(Structure):
class Complete(Structure):
pass
PComplete = POINTER(Complete)
-Complete._fields_ = [("a", c_int)]
+Complete._fields_ = [("a", c_long)]
################################################################
#