mirror of https://github.com/go-python/gopy.git
bind: doc-strings
Change-Id: I71a1bcfe5daf6902e1127c84b8a2de7250712eeb
This commit is contained in:
parent
25b6e3cea7
commit
32c6f52cf8
|
@ -39,17 +39,17 @@ type symbol struct {
|
|||
kind symkind
|
||||
goobj types.Object
|
||||
doc string
|
||||
id string
|
||||
goname string
|
||||
cgoname string
|
||||
cpyname string
|
||||
id string // mangled name of entity (eg: <pkg>_<name>)
|
||||
goname string // name of go entity
|
||||
cgoname string // name of entity for cgo
|
||||
cpyname string // name of entity for cpython
|
||||
|
||||
// for types only
|
||||
|
||||
pyfmt string
|
||||
pysig string
|
||||
c2py string
|
||||
py2c string
|
||||
pyfmt string // format string for PyArg_ParseTuple
|
||||
pysig string // type string for doc-signatures
|
||||
c2py string // name of c->py converter function
|
||||
py2c string // name of py->c converter function
|
||||
}
|
||||
|
||||
func (s symbol) isType() bool {
|
||||
|
|
Loading…
Reference in New Issue