Give credit to Fredrik Lundh for html unescape code.
authorJosh Roesslein <jroesslein@gmail.com>
Mon, 12 Oct 2009 05:21:25 +0000 (00:21 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Mon, 12 Oct 2009 05:21:25 +0000 (00:21 -0500)
CONTRIBUTORS
tweepy/parsers.py

index a49cbf56c7e787617d237285da94fc655b695405..de71b49fefb6f175789d5b8c02331164867cf11a 100644 (file)
@@ -6,3 +6,5 @@ Mark Lango
     - Ignore key arguments with value of None
 Pascal Jurgens
     - Streaming API fix
+Fredrik Lundh
+    - html unescape (http://effbot.org/zone/re-sub.htm#unescape-html)
index 84fcf53a023c3f0e0d8efd24e5a6e1c415fa1d6f..739d303a562161a0ba58671a4f5c1fbb6e8f5698 100644 (file)
@@ -43,6 +43,7 @@ def _parse_search_datetime(str):
 
 
 def unescape_html(text):
+    """Created by Fredrik Lundh (http://effbot.org/zone/re-sub.htm#unescape-html)"""
     def fixup(m):
         text = m.group(0)
         if text[:2] == "&#":