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

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to