clean up the is_callable stuff

This commit is contained in:
Dave Halter
2014-04-02 09:47:27 +02:00
parent 305b593f3b
commit 8ac9e16f3f
2 changed files with 2 additions and 5 deletions

View File

@@ -298,11 +298,10 @@ class BaseDefinition(object):
if isinstance(stripped, pr.Name):
stripped = stripped.parent
return (stripped.isinstance(er.Function, er.Class)
or stripped.isinstance(compiled.CompiledObject)
and stripped.type() in ('function', 'class'))
return stripped.is_callable()
@property
@cache.underscore_memoization
def params(self):
"""
Raises an ``AttributeError``if the definition is not callable.