mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix test on 64-bit platforms.
This commit is contained in:
parent
6d75ff82f0
commit
2affb40e70
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,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)]
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue