Message122822
Thanks for the patch.
First, you don't need to support str, since sockets only accept binary strings (not unicode).
Second, I think it's simpler and more generic to do something like:
try:
self.sock.sendall(data)
except TypeError:
try:
it = iter(data)
except TypeError:
raise TypeError("data should be a bytes-like object or "
"an iterable, got %r" % type(it))
for d in t:
self.sock.sendall(d) |
|
Date |
User |
Action |
Args |
2010-11-29 16:00:08 | pitrou | set | recipients:
+ pitrou, jhylton, rhettinger, orsenthil, catlee, eric.araujo, rcoyner, xuanji |
2010-11-29 16:00:08 | pitrou | set | messageid: <1291046408.91.0.922821752229.issue3243@psf.upfronthosting.co.za> |
2010-11-29 16:00:04 | pitrou | link | issue3243 messages |
2010-11-29 16:00:04 | pitrou | create | |
|