mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-20 20:41:13 +08:00
Fix an issue with decoratee names
This commit is contained in:
@@ -22,4 +22,9 @@ class Decoratee(ValueWrapper):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
|
if self._wrapped_value.is_function():
|
||||||
|
# If a function is returned, the name that we want is usually the
|
||||||
|
# original one. This is obviously a bit weird, but it works pretty
|
||||||
|
# well, since users don't pass around functions randomly.
|
||||||
return self._original_value.name
|
return self._original_value.name
|
||||||
|
return self._wrapped_value.name
|
||||||
|
|||||||
Reference in New Issue
Block a user