"Zubin Mithra" <
zubin....@gmail.com> wrote in message
news:8e7c74320912300315r625...@mail.gmail.com...
> The code snippet i have pasted at,
>
>
http://paste.pocoo.org/show/160555/>
> produces a traceback which also has been pasted at the above link. The
> snippet attempts at socket programming using OOPs concepts. Please help.
>
> Thankx in advance
> Zubin Mithra
If you're trying to be a server, you need to listen() before accept(), and I
wouldn't call the method "connect()".
If you're trying to be a client, you can skip the bind() and call connect()
instead of accept().
-Mark