Rev 230 | Blame | Compare with Previous | Last modification | View Log | RSS feed
'''Created on 06-Jun-2010@author: gaurav'''def unescape(s):"""Documentation for method unescape@param a string@return the same string but in the unesescape form i.e'<' replaced with '<''>' replaced with '>''&' replaced with '&'"""s = s.replace("<", "<")s = s.replace(">", ">")s = s.replace("&", "&")return s