def color_memory_leak(): for _ in xrange(5000): with Color('orange'): pass time.sleep(0.02)
def color_memory_leak(): for i in xrange(5000): with Color('orange'): pass time.sleep(0.02)