-
Bug
-
Resolution: Unresolved
-
Medium
-
None
-
None
-
None
generators in python are a great tool for reducing memory utilization in python.
in test_cdp, the generators are wrapped in list(), effectively negating the benefit of using the generator.
Rewrite tests to use generators using the idiom:
for count, node, reason in show_errors():