Way to check the list of python functions defined by PyCall's py""" """ in workspace?

I’m using visual studio code for my IDE.

I can check list of functions defined by Julia language in vscode’s workspace.

However, I can’t see the list of functions defined by PyCall + py"““def fun ~””".

For example, adder_julia() is listed in vscode’s workspace, but adder_python() isn’t.

As I’m a big PyCall user, this is a little uncomfortable.

using PyCall

function adder_julia(x::Number, y::Number)
    return x + y
end

py"""
def adder_python(x, y):
    return x + y
"""

adder_julia(1, 3.5)  # listed in workspace.
py"adder_python"(1, 3.5) # not listed in workspace.