Does Python ctypes have a known memory leak? I am working on a Python script having code like the below snippet, using ctypes, that for some reason is causing a memory leak. The "while True" in this example is to test for the leak caused by calling the function. It is being run on Windows with Python 2.5.4:
import ctypes
def hi():
class c1(ctypes.Structure):
_fields_=[('f1',ctypes.c_uint8)]
class c2(ctypes.Structure):
_fields_=[('g1',c1*2)]
while True:
test=hi()
The leak can be tested using ProcessExplorer -- as it keeps looping, Python keeps taking up more and more memory. It seems to require having two Structure subclasses where one of the classes has a "multiple" of the other one (using the * operator), but I'm not sure if the condition is more basic than that. Even if del test is added in the loop, it still leaks memory.
Any ideas on what might be causing this?
Edit: Because someone suggested it might not have garbage-collected yet, here is an edited version that does garbage-collect but still appears to leak memory:
import gc
import ctypes
def hi():
class c1(ctypes.Structure):
_fields_=[('f1',ctypes.c_uint8)]
class c2(ctypes.Structure):
_fields_=[('g1',c1*2)]
while True:
test=hi()
test2=gc.collect()
c1created? Have a counter that's printed every 50,000 calls tohi()or so so you know. – agf Sep 17 '11 at 5:40from itertools import countat the top then changewhile True:tofor c in count():and then addif not c % 50000: print cin the loop. Then, if theprints are too frequent or too infrequent to be useful, increase or decrease that50000. – agf Sep 17 '11 at 5:57