Re: Threaded server

2008-01-14 Thread Diez B. Roggisch
Giampaolo Rodola' wrote: > On 14 Gen, 12:30, Nick Craig-Wood <[EMAIL PROTECTED]> wrote: >> Giampaolo Rodola' <[EMAIL PROTECTED]> wrote: >> > I'm trying to run an asynchronous FTP server I wrote into a thread for >> > being able to run a test suite against it. >> > The code below is the threaded FT

Re: Threaded server

2008-01-14 Thread Giampaolo Rodola'
On 14 Gen, 12:30, Nick Craig-Wood <[EMAIL PROTECTED]> wrote: > Giampaolo Rodola' <[EMAIL PROTECTED]> wrote: > >  I'm trying to run an asynchronous FTP server I wrote into a thread for > >  being able to run a test suite against it. > >  The code below is the threaded FTP server code I'm using: > >

Re: Threaded server

2008-01-14 Thread Nick Craig-Wood
Giampaolo Rodola' <[EMAIL PROTECTED]> wrote: > I'm trying to run an asynchronous FTP server I wrote into a thread for > being able to run a test suite against it. > The code below is the threaded FTP server code I'm using: > > class FTPd(threading.Thread): > > def __init__(self): >