github.com/goplus/llgo@v0.8.3/py/inspect/doc.txt (about)

     1  // https://docs.python.org/3/library/inspect.html
     2  
     3  // Return a signature object for the given callable.
     4  //
     5  //go:linkname Signature py.signature
     6  func Signature(callable *py.Object) *py.Object
     7  
     8  // Get the names and default values of a Python function’s parameters. A named
     9  // tuple is returned:
    10  //
    11  // FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations)
    12  //
    13  //go:linkname Getfullargspec py.getfullargspec
    14  func Getfullargspec(f *py.Object) *py.Object