We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb19c67 commit 2ee3956Copy full SHA for 2ee3956
py/traceback.go
@@ -52,7 +52,7 @@ RuntimeError: this is the error message
52
func (tb *Traceback) TracebackDump(w io.Writer) {
53
for ; tb != nil; tb = tb.Next {
54
fmt.Fprintf(w, " File %q, line %d, in %s\n", tb.Frame.Code.Filename, tb.Lineno, tb.Frame.Code.Name)
55
- //fmt.Fprintf(w, " %s\n", "FIXME line of source goes here")
+ //fmt.Fprintf(w, " %s\n", "FIXME line of source goes here")
56
}
57
58
0 commit comments