diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-15 14:58:46 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-15 14:58:46 +0100 |
commit | 33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 (patch) | |
tree | 31914a601302579ff817504019296fd7e9e46765 /test/tools/memoryleak.py | |
parent | 36f34f701991b5d474c005ec45e3b66e20f326a8 (diff) | |
download | mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.gz mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.bz2 mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.zip |
move mitmproxy
Diffstat (limited to 'test/tools/memoryleak.py')
-rw-r--r-- | test/tools/memoryleak.py | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/test/tools/memoryleak.py b/test/tools/memoryleak.py deleted file mode 100644 index 259309a6..00000000 --- a/test/tools/memoryleak.py +++ /dev/null @@ -1,38 +0,0 @@ -import gc -import threading -from pympler import muppy, refbrowser -from OpenSSL import SSL -# import os -#os.environ["TK_LIBRARY"] = r"C:\Python27\tcl\tcl8.5" -#os.environ["TCL_LIBRARY"] = r"C:\Python27\tcl\tcl8.5" - -# Also noteworthy: guppy, objgraph - -step = 0 -__memory_locals__ = True - - -def str_fun(obj): - if isinstance(obj, dict): - if "__memory_locals__" in obj: - return "(-locals-)" - if "self" in obj and isinstance(obj["self"], refbrowser.InteractiveBrowser): - return "(-browser-)" - return str(id(obj)) + ": " + str(obj)[:100].replace("\r\n", "\\r\\n").replace("\n", "\\n") - - -def request(ctx, flow): - global step, ssl - print("==========") - print("GC: {}".format(gc.collect())) - print("Threads: {}".format(threading.active_count())) - - step += 1 - if step == 1: - all_objects = muppy.get_objects() - ssl = muppy.filter(all_objects, SSL.Connection)[0] - if step == 2: - ib = refbrowser.InteractiveBrowser(ssl, 2, str_fun, repeat=False) - del ssl # do this to unpollute view - ib.main(True) - # print("\r\n".join(str(x)[:100] for x in gc.get_referrers(ssl))) |