
Aug. 17, 2014
10:52 p.m.
On Aug 18, 2014, at 08:48 AM, Nick Coghlan wrote:
Calling it bytes is too confusing:
for x in bytes(data): ...
for x in bytes(data).bytes()
When referring to bytes, which bytes do you mean, the builtin or the method?
iterbytes() isn't especially attractive as a method name, but it's far more explicit about its purpose.
I don't know. How often do you really instantiate the bytes object there in the for loop? -Barry