Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: ef4364f3b8d45c713ca4aecf9329587ee0ed1bda authored by Neal Norwitz on 05 April 2007, 05:06:49 UTC
Fix unpack so it works on 64-bit platforms.
Tip revision: ef4364f
test_ctypes.py

# Taken from Lib/ctypes/test/test_keeprefs.py, PointerToStructure.test().
# When this leak is fixed, remember to remove from Misc/build.sh LEAKY_TESTS.

from ctypes import Structure, c_int, POINTER
import gc

def leak_inner():
    class POINT(Structure):
        _fields_ = [("x", c_int)]
    class RECT(Structure):
        _fields_ = [("a", POINTER(POINT))]

def leak():
    leak_inner()
    gc.collect()
back to top