From fac0b0f7935725e8e72fee0cbee3ff9260b25b68 Mon Sep 17 00:00:00 2001 From: calvin Date: Thu, 2 Feb 2006 22:58:40 +0000 Subject: [PATCH] remove unused quote_val method git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3042 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/HtmlParser/htmllib.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/linkcheck/HtmlParser/htmllib.py b/linkcheck/HtmlParser/htmllib.py index 819d4fa9..e7e0b493 100644 --- a/linkcheck/HtmlParser/htmllib.py +++ b/linkcheck/HtmlParser/htmllib.py @@ -212,10 +212,3 @@ def quote_attrval (s): else: res.append(u"&#%d;" % ord(c)) return u"".join(res) - - -def quote_val (s): - s = s.replace('&', "&") - s = s.replace('<', "<") - s = s.replace('>', ">") - return s