seriously, don't try to wrap any lines, pprint

This commit is contained in:
Noah Levitt 2014-06-20 14:37:33 -07:00
parent c6fa00812c
commit 2cf69bdaff

View File

@ -55,7 +55,7 @@ if __name__ == "__main__":
return "\n".join(x)
def dump_state(signum, frame):
pp = pprint.PrettyPrinter(indent=4, width=-1)
pp = pprint.PrettyPrinter(indent=4, width=10000)
state_strs = []
for th in threading.enumerate():