On May 28, 3:23 pm, Stefan Behnel wrote:
> kak...@gmail.com, 28.05.2010 13:50:
>
> > Hi in the following code
>
> > class MyClientHandler(SocketServer.BaseRequestHandler):
> > def handle(self):
> > print self.client_address, now( )
> > time.sleep(5)
> > while True:
kak...@gmail.com, 28.05.2010 13:50:
Hi in the following code
class MyClientHandler(SocketServer.BaseRequestHandler):
def handle(self):
print self.client_address, now( )
time.sleep(5)
while True:
xmltxt = self.request.recv(1024)<--is this ok -
enough?
Hi in the following code
class MyClientHandler(SocketServer.BaseRequestHandler):
def handle(self):
print self.client_address, now( )
time.sleep(5)
while True:
xmltxt = self.request.recv(1024)<--is this ok -
enough?
if not xmltxt: break