[Python-3000-checkins] r64980 - in python/branches/py3k: Lib/ctypes/test/test_pep3118.py

thomas.heller python-3000-checkins at python.org
Tue Jul 15 22:23:34 CEST 2008


Author: thomas.heller
Date: Tue Jul 15 22:23:33 2008
New Revision: 64980

Log:
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/ctypes/test/test_pep3118.py

Modified: python/branches/py3k/Lib/ctypes/test/test_pep3118.py
==============================================================================
--- python/branches/py3k/Lib/ctypes/test/test_pep3118.py	(original)
+++ python/branches/py3k/Lib/ctypes/test/test_pep3118.py	Tue Jul 15 22:23:33 2008
@@ -92,7 +92,7 @@
 class Complete(Structure):
     pass
 PComplete = POINTER(Complete)
-Complete._fields_ = [("a", c_int)]
+Complete._fields_ = [("a", c_long)]
 
 ################################################################
 #


More information about the Python-3000-checkins mailing list