def __exit (memory, code): if memory: from exabgp.dep import objgraph print "memory utilisation" print print objgraph.show_most_common_types(limit=20) print print print "generating memory utilisation graph" print obj = objgraph.by_type('Reactor') objgraph.show_backrefs([obj], max_depth=10) sys.exit(code)