Change timeout to 30s.
authorAdam Sampson <ats@offog.org>
Sat, 12 Jul 2003 16:10:06 +0000 (16:10 +0000)
committerAdam Sampson <ats@offog.org>
Sat, 12 Jul 2003 16:10:06 +0000 (16:10 +0000)
Add notice of changes made.

rawdoglib/feedparser.py

index 3ffce0f03d0d3af69a29a79ec61eede8415e9b67..c315eada4fff1e2582c5d79f1256e5f3514a3514 100644 (file)
@@ -28,6 +28,9 @@ Things it handles that choke other parsers:
 - multiple content items per entry (Pie)
 
 Requires Python 2.2 or later
+
+Modified for rawdog usage by Adam Sampson <azz@us-lot.org>:
+- increased socket timeout to 30s
 """
 
 __version__ = "2.4"
@@ -85,7 +88,7 @@ __history__ = """
 
 try:
     import timeoutsocket # http://www.timo-tasi.org/python/timeoutsocket.py
-    timeoutsocket.setDefaultSocketTimeout(10)
+    timeoutsocket.setDefaultSocketTimeout(30)
 except ImportError:
     pass
 import cgi, re, sgmllib, string, StringIO, urllib, gzip