From: Philippe Coval Date: Thu, 6 Feb 2014 18:12:14 +0000 (+0100) Subject: workaround: remove dependency on xml.sax.saxutils X-Git-Tag: accepted/tizen/3.0/common/20161114.111546^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_5.5_unified_mobile_hotfix;p=platform%2Fupstream%2Fpython-cython.git workaround: remove dependency on xml.sax.saxutils Bug-Tizen: TINF-370/part/3of3 Change-Id: I8255d67fe8dfd0d35a8db8c62ed3716dd75d0183 Signed-off-by: Philippe Coval --- diff --git a/Cython/Compiler/Annotate.py b/Cython/Compiler/Annotate.py index 0d0a578..45ea66e 100644 --- a/Cython/Compiler/Annotate.py +++ b/Cython/Compiler/Annotate.py @@ -3,7 +3,6 @@ import os import re import codecs -from xml.sax.saxutils import escape as html_escape from StringIO import StringIO import Version @@ -149,8 +148,6 @@ function toggleDiv(id) { code = code_source_file[k] except KeyError: code = '' - else: - code = html_escape(code) calls = zero_calls.copy() code = _parse_code(annotate, code)