summaryrefslogtreecommitdiff
path: root/lab
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-08-06 13:25:31 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-08-06 13:25:31 -0400
commit3565b897757d699d558ad975bd03766e8d82f3fc (patch)
tree4ed0551102793e477e34b1b376e400b1a9c3ec76 /lab
parentbdd9842239a79d62ddf7758073c7c2d25e31b162 (diff)
downloadpython-coveragepy-3565b897757d699d558ad975bd03766e8d82f3fc.tar.gz
Built-in support for using aspectlib to debug execution.
Diffstat (limited to 'lab')
-rw-r--r--lab/aspectlib.diff14
1 files changed, 0 insertions, 14 deletions
diff --git a/lab/aspectlib.diff b/lab/aspectlib.diff
deleted file mode 100644
index 5e4ea6e..0000000
--- a/lab/aspectlib.diff
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -r 44af4372756b coverage/__init__.py
---- a/coverage/__init__.py Sat Nov 21 14:26:51 2015 -0500
-+++ b/coverage/__init__.py Sun Nov 22 08:18:04 2015 -0500
-@@ -18,6 +18,10 @@
- # Backward compatibility.
- coverage = Coverage
-
-+if 1:
-+ import aspectlib, aspectlib.debug, sys
-+ aspectlib.weave(Coverage, aspectlib.debug.log(print_to=sys.stdout), methods=aspectlib.PUBLIC_METHODS)
-+
- # On Windows, we encode and decode deep enough that something goes wrong and
- # the encodings.utf_8 module is loaded and then unloaded, I don't know why.
- # Adding a reference here prevents it from being unloaded. Yuk.