Petr,
I am not an expert, but why not to use time.sleep(5)?
If you are using wxPython, you may also try wx.Timer, in which you could set
its interval.
Good luck!
Leon
On Tue, Oct 7, 2008 at 2:07 AM, Petr Jakes <[EMAIL PROTECTED]> wrote:
> I have infinitive loop running script and I would like t
Maybe you need to close the socket somewhere else, rather than to close it
when you receive the your response.
On Tue, Sep 30, 2008 at 7:01 AM, Ali Hamad <[EMAIL PROTECTED]> wrote:
> Hello All :
>
> A socket question from a networking newbie. I need to create
> a server that:
>
> 1) receive a me
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import string, sys
from threading import Thread
import os
import time
class test_pipe(Thread):
def __init__(self, fd):
Thread.__init__(self)
self.testfd = fd
def run(self):
print "started thread begin -"
w