From: Robert Bradshaw Date: Sun, 21 Feb 2010 05:06:12 +0000 (-0800) Subject: Annotation fix. X-Git-Tag: 0.13.beta0~335 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8bf713a7ca575d7a97b983358480268ce94273ee;p=cython.git Annotation fix. --- diff --git a/Cython/Compiler/Annotate.py b/Cython/Compiler/Annotate.py index d252fda6..3a376097 100644 --- a/Cython/Compiler/Annotate.py +++ b/Cython/Compiler/Annotate.py @@ -143,7 +143,9 @@ function toggleDiv(id) { code = self.code[k] except KeyError: code = '' - + + code = code.replace('<', '<') + code, py_c_api_calls = py_c_api.subn(ur"\1(", code) code, pyx_c_api_calls = pyx_c_api.subn(ur"\1(", code) code, py_macro_api_calls = py_marco_api.subn(ur"\1(", code)