Skip to content

Commit 10c00bc

Browse files
author
Drew O'Meara
committed
let's not remove FIXME reminder
1 parent 995ac1b commit 10c00bc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

py/traceback.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ RuntimeError: this is the error message
5252
func (tb *Traceback) TracebackDump(w io.Writer) {
5353
for ; tb != nil; tb = tb.Next {
5454
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")
5556
}
5657
}
5758

0 commit comments

Comments
 (0)