summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test/test_callbacks.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/ctypes/test/test_callbacks.py')
-rw-r--r--Lib/ctypes/test/test_callbacks.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/ctypes/test/test_callbacks.py b/Lib/ctypes/test/test_callbacks.py
index 8801ccd..c7207ea 100644
--- a/Lib/ctypes/test/test_callbacks.py
+++ b/Lib/ctypes/test/test_callbacks.py
@@ -134,6 +134,14 @@ class Callbacks(unittest.TestCase):
if isinstance(x, X)]
self.assertEqual(len(live), 0)
+ def test_issue12483(self):
+ import gc
+ class Nasty:
+ def __del__(self):
+ gc.collect()
+ CFUNCTYPE(None)(lambda x=Nasty(): None)
+
+
try:
WINFUNCTYPE
except NameError: