Commit d5586090 authored by Tres Seaver's avatar Tres Seaver

Merge branch '2.13' of https://github.com/rdikeshwar/Zope into rdikeshwar-2.13

parents 5ed84400 70aa1f79
......@@ -163,6 +163,10 @@ class DebugManager(Item, Implicit):
# return class reference info
counts = {}
for m in sys.modules.values():
if m is None:
continue
if m.__name__.startswith('six'):
continue
for sym in dir(m):
ob = getattr(m, sym)
if type(ob) in t:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment