summaryrefslogtreecommitdiff
path: root/coverage/plugin.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-12 06:28:12 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-12 06:28:12 -0500
commit2bfb7a99063911fd17d16bf0dc304546cb7b720d (patch)
treea6b5cc008b7715afcbc1673b8d4648581b4472a0 /coverage/plugin.py
parent81f5697e7cb2f5a064fd891617c0c8caf5ab21d9 (diff)
downloadpython-coveragepy-git-2bfb7a99063911fd17d16bf0dc304546cb7b720d.tar.gz
Clean up some plugin tests.
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r--coverage/plugin.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py
index 75eee851..3d41aab9 100644
--- a/coverage/plugin.py
+++ b/coverage/plugin.py
@@ -152,8 +152,3 @@ def overrides(obj, method_name, base_class):
base_func = base_func.im_func
return klass_func is not base_func
-
-
-def plugin_implements(obj, method_name):
- """Does the plugin `obj` implement `method_name`?"""
- return overrides(obj, method_name, CoveragePlugin)