Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f70e195

Browse files
author
Thomas Heller
committed
Merged revisions 64979 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r64979 | thomas.heller | 2008-07-15 22:18:46 +0200 (Tue, 15 Jul 2008) | 1 line Fix test on 64-bit platforms. ........
1 parent 15383a0 commit f70e195

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/ctypes/test/test_pep3118.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class Incomplete(Structure):
9292
class Complete(Structure):
9393
pass
9494
PComplete = POINTER(Complete)
95-
Complete._fields_ = [("a", c_int)]
95+
Complete._fields_ = [("a", c_long)]
9696

9797
################################################################
9898
#

0 commit comments

Comments
 (0)