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
|
kind symkind
|
||||||
goobj types.Object
|
goobj types.Object
|
||||||
doc string
|
doc string
|
||||||
id string
|
id string // mangled name of entity (eg: <pkg>_<name>)
|
||||||
goname string
|
goname string // name of go entity
|
||||||
cgoname string
|
cgoname string // name of entity for cgo
|
||||||
cpyname string
|
cpyname string // name of entity for cpython
|
||||||
|
|
||||||
// for types only
|
// for types only
|
||||||
|
|
||||||
pyfmt string
|
pyfmt string // format string for PyArg_ParseTuple
|
||||||
pysig string
|
pysig string // type string for doc-signatures
|
||||||
c2py string
|
c2py string // name of c->py converter function
|
||||||
py2c string
|
py2c string // name of py->c converter function
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s symbol) isType() bool {
|
func (s symbol) isType() bool {
|
||||||
|
|
Loading…
Reference in New Issue