summaryrefslogtreecommitdiff
path: root/Lib/test/leakers/test_ctypes.py
blob: 0f9a2cdc9a16625ce9c83479e52f2428c9f8040f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

# 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()