summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-02-05 23:58:40 -0600
committerMichael Merickel <michael@merickel.org>2015-02-05 23:58:40 -0600
commitbbe0ad003c2f0fe5bf66953f12bd15043702838c (patch)
treea7a29812a037831a83985974c77d8b5586f933f3
parent61967fd76471a9de88f0b4ef2e3385fdf3f1e3b2 (diff)
downloadpyramid-bbe0ad003c2f0fe5bf66953f12bd15043702838c.tar.gz
pyramid-bbe0ad003c2f0fe5bf66953f12bd15043702838c.tar.bz2
pyramid-bbe0ad003c2f0fe5bf66953f12bd15043702838c.zip
fix coverage
-rw-r--r--pyramid/compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/compat.py b/pyramid/compat.py
index 5909debf2..c49ea1e73 100644
--- a/pyramid/compat.py
+++ b/pyramid/compat.py
@@ -245,7 +245,7 @@ def is_bound_method(ob):
return inspect.ismethod(ob) and getattr(ob, im_self, None) is not None
# support annotations and keyword-only arguments in PY3
-if PY3:
+if PY3: # pragma: no cover
from inspect import getfullargspec as getargspec
else:
from inspect import getargspec