From bbe0ad003c2f0fe5bf66953f12bd15043702838c Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Thu, 5 Feb 2015 23:58:40 -0600 Subject: fix coverage --- pyramid/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3