Re: creating an object from base class

2007-04-28 Thread Steve Holden
Ian Clark wrote: > Quote iogilvy: >> i wish to have some extended functionality added to sockets >> >> i can create my own socket class class mysocket(socket.socket): >> >> and all should be fine. Except, the sockets are created for me by the >> accept method, listening on port. So how can i take

Re: creating an object from base class

2007-04-27 Thread Ian Clark
Quote iogilvy: > i wish to have some extended functionality added to sockets > > i can create my own socket class class mysocket(socket.socket): > > and all should be fine. Except, the sockets are created for me by the > accept method, listening on port. So how can i take the standard > socket cr

Re: creating an object from base class

2007-04-27 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > i wish to have some extended functionality added to sockets > > i can create my own socket class class mysocket(socket.socket): > > and all should be fine. Except, the sockets are created for me by the > accept method, listening on port. So how can i take the stand