-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Sumurai8 (DD):
text = IRC.recv(1024) msgs = text.split('\n')
This seems to have a bug: if there's more than 1024 bytes waiting, you could receive only part of the final message; so you will truncate that message, and the next recv will receive the other half (which will then be effectively junk).
- river.