Commit f70e1959 authored by Thomas Heller's avatar Thomas Heller

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.
........
parent 15383a08
...@@ -92,7 +92,7 @@ class Incomplete(Structure): ...@@ -92,7 +92,7 @@ class Incomplete(Structure):
class Complete(Structure): class Complete(Structure):
pass pass
PComplete = POINTER(Complete) PComplete = POINTER(Complete)
Complete._fields_ = [("a", c_int)] Complete._fields_ = [("a", c_long)]
################################################################ ################################################################
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment