You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes Python functions are not called directly, but are indirectly by function wrapper, decorators or other ways that use function as parameter.
Example code:
fromfunctoolsimportpartialdeffunction(a, b, c):
print(a, b, c)
f=partial(function, 1, 2)
f(3)
Currently, VSCode Python plugin couldn't detect such function calling for function using show call hierarchy.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Sometimes Python functions are not called directly, but are indirectly by function wrapper, decorators or other ways that use function as parameter.
Example code:
Currently, VSCode Python plugin couldn't detect such function calling for function using show call hierarchy.
Beta Was this translation helpful? Give feedback.
All reactions