diff options
| author | Michael Merickel <michael@merickel.org> | 2015-02-05 23:58:40 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2015-02-05 23:58:40 -0600 |
| commit | bbe0ad003c2f0fe5bf66953f12bd15043702838c (patch) | |
| tree | a7a29812a037831a83985974c77d8b5586f933f3 | |
| parent | 61967fd76471a9de88f0b4ef2e3385fdf3f1e3b2 (diff) | |
| download | pyramid-bbe0ad003c2f0fe5bf66953f12bd15043702838c.tar.gz pyramid-bbe0ad003c2f0fe5bf66953f12bd15043702838c.tar.bz2 pyramid-bbe0ad003c2f0fe5bf66953f12bd15043702838c.zip | |
fix coverage
| -rw-r--r-- | pyramid/compat.py | 2 |
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 |
