]> granicus.if.org Git - python/commitdiff
bpo-29638: Fix spurious refleaks after typing is imported (#469)
authorIvan Levkivskyi <levkivskyi@gmail.com>
Sun, 5 Mar 2017 18:15:20 +0000 (19:15 +0100)
committerSerhiy Storchaka <storchaka@gmail.com>
Sun, 5 Mar 2017 18:15:20 +0000 (20:15 +0200)
Lib/test/libregrtest/refleak.py

index d9f72208cfda0e2de85c6d64e9aa410c4e92fe09..c69fc0f147706bdb953b8bf1e88e6460cec2a958 100644 (file)
@@ -143,9 +143,14 @@ def dash_R_cleanup(fs, ps, pic, zdc, abcs):
     sys._clear_type_cache()
 
     # Clear ABC registries, restoring previously saved ABC registries.
-    for abc in [getattr(collections.abc, a) for a in collections.abc.__all__]:
-        if not isabstract(abc):
-            continue
+    abs_classes = [getattr(collections.abc, a) for a in collections.abc.__all__]
+    abs_classes = filter(isabstract, abs_classes)
+    if 'typing' in sys.modules:
+        t = sys.modules['typing']
+        # These classes require special treatment because they do not appear
+        # in direct subclasses of collections.abc classes
+        abs_classes = list(abs_classes) + [t.ChainMap, t.Counter, t.DefaultDict]
+    for abc in abs_classes:
         for obj in abc.__subclasses__() + [abc]:
             obj._abc_registry = abcs.get(obj, WeakSet()).copy()
             obj._abc_cache.clear()