From 3a3c13e95df58d7691f8cad32168a5aea709df9e Mon Sep 17 00:00:00 2001 From: William Stein Date: Fri, 3 Nov 2006 09:33:27 -0800 Subject: [PATCH] Made annoted C files easier to read. --- Cython/Compiler/Code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.26.2