MCPcopy Index your code
hub / github.com/go-python/gopy / Error

Method Error

bind/bind.go:43–52  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41}
42
43func (list *ErrorList) Error() error {
44 buf := new(bytes.Buffer)
45 for i, err := range *list {
46 if i > 0 {
47 buf.WriteRune('\n')
48 }
49 io.WriteString(buf, err.Error())
50 }
51 return errors.New(buf.String())
52}
53
54const (
55 doDebug = true

Callers 5

initFunction · 0.80
initFunction · 0.80
TestGetGoVersionFunction · 0.80
TestExtractPythonNameFunction · 0.80
genMethod · 0.80

Calls 1

StringMethod · 0.45

Tested by 4

initFunction · 0.64
initFunction · 0.64
TestGetGoVersionFunction · 0.64
TestExtractPythonNameFunction · 0.64