Re: [Tutor] httplib exceptions

2007-08-09 Thread Bob Larsen
Both Systems are Linux, In fact both are REd Hat Based, The Web Server is Fedora (I'm Not sure which version that particular server is running) and my workstation is running CentOS 5. I am sure that both are running an ext3 file system. Of Course there isn't a file there is just the web

[Tutor] httplib exceptions

2007-08-08 Thread Bob Larsen
I have written a script which checks all of my servers at predetermined intervals. code: try: page = urllib2.urlopen(url) soup= page.read() reex = re.compile(regex) test = re.findall(reex,soup) except

Re: [Tutor] httplib exceptions

2007-08-08 Thread Kent Johnson
Bob Larsen wrote: I have written a script which checks all of my servers at predetermined intervals. code: try: page = urllib2.urlopen(url) soup= page.read() reex = re.compile(regex) test =

Re: [Tutor] httplib exceptions

2007-08-08 Thread Alan Gauld
Bob Larsen [EMAIL PROTECTED] wrote It won't help with your problem but... try: page = urllib2.urlopen(url) soup= page.read() reex = re.compile(regex) test = re.findall(reex,soup) You could change this to

Re: [Tutor] httplib exceptions

2007-08-08 Thread Kent Johnson
Alan Gauld wrote: There is a python Bug: http://sourceforge.net/tracker/index.php?func=detailaid=1486335group_id=5470atid=105470 http://sourceforge.net/tracker/index.php?func=detailaid=1486335group_id=5470atid=105470 that states this is caused by a missing EOF, and is not a big deal Any