[ctypes-commit] ctypes/unittests test_callbacks.py,1.20,1.21
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2004-10-21 08:06:29
|
Update of /cvsroot/ctypes/ctypes/unittests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18161 Modified Files: test_callbacks.py Log Message: exec_malloc.c replaced by malloc_closure.c Index: test_callbacks.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/unittests/test_callbacks.py,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** test_callbacks.py 14 Oct 2004 13:16:13 -0000 1.20 --- test_callbacks.py 21 Oct 2004 08:06:17 -0000 1.21 *************** *** 4,8 **** class Callbacks(unittest.TestCase): ! functype = CFUNCTYPE def callback(self, *args): --- 4,12 ---- class Callbacks(unittest.TestCase): ! functype = CFUNCTYPE ! ! ## def tearDown(self): ! ## import gc ! ## gc.collect() def callback(self, *args): |