From: William Stein Date: Fri, 3 Nov 2006 17:33:27 +0000 (-0800) Subject: Made annoted C files easier to read. X-Git-Tag: 0.9.6.14~29^2~211 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3a3c13e95df58d7691f8cad32168a5aea709df9e;p=cython.git Made annoted C files easier to read. --- diff --git a/Cython/Compiler/Code.py b/Cython/Compiler/Code.py index f5edf512..062efb6a 100644 --- a/Cython/Compiler/Code.py +++ b/Cython/Compiler/Code.py @@ -95,7 +95,7 @@ class CCodeWriter: s = contents[i] if i+1 == line: # line numbers in pyrex start counting up from 1 s = s.rstrip() + ' # <<<<<<<<<<<<<< ' + '\n' - context += s + context += " * " + s self.marker = '"%s":%s\n%s' % (file, line, context)