What for -- for? (was A bug?)

Terry Reedy tjreedy at udel.edu
Wed Oct 29 23:58:32 EDT 2014


On 10/29/2014 1:42 AM, Zachary Ware wrote:
> to avoid inconvenient line-wrapping (that I can avoid just by
> sticking to 80 column lines in the first place:).

Try perhaps 65 for email.

def get_abc_map(cls):
     return {n: issubclass(cls, getattr(abc, n))
             for n in dir(abc) if n[0].isupper()}

is less than 55 and should not get linewrapped on any sensible sender or 
reader.

-- 
Terry Jan Reedy




More information about the Python-list mailing list