From: Mike Bayer Date: Fri, 11 Aug 2017 13:54:16 +0000 (-0400) Subject: - try adding the prints back in and re-test X-Git-Tag: origin~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1fd7f1e01bd9901fab7b5f33183e310bf0c0fd6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - try adding the prints back in and re-test Change-Id: I3a82b06ecc3c065240cc05871dee2881f20e414e --- diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index 4409a9e968..dfb4a49553 100644 --- a/test/aaa_profiling/test_memusage.py +++ b/test/aaa_profiling/test_memusage.py @@ -82,19 +82,19 @@ def profile_memory(maxtimes=250, latest_max = max(samples[-5:]) if latest_max > max_: - #print( - # "Max grew from %s to %s, max has " - # "grown for %s samples" % ( - # max_, latest_max, max_grew_for - # ) - #) + print( + "Max grew from %s to %s, max has " + "grown for %s samples" % ( + max_, latest_max, max_grew_for + ) + ) max_ = latest_max max_grew_for += 1 until_maxtimes += 1 continue else: - #print("Max remained at %s, %s more attempts left" % - # (max_, max_grew_for)) + print("Max remained at %s, %s more attempts left" % + (max_, max_grew_for)) max_grew_for -= 1 if max_grew_for == 0: success = True