Re: [Python-Dev] Why does PEP 7/8 explicitly suggest 2 spaces after a period?

2016-05-21 Thread Stephen J. Turnbull
Bernardo Sulzbach writes: > > On 05/20/2016 09:27 AM, Brett Cannon wrote: > > > > The period is a full-stop punctuation mark, but visually obscure [1]. > > It is small. This does not make it hard to notice, however. That depends on fonts, and on the ability of the user to write correctly as

Re: [Python-Dev] Adding Type[C] to PEP 484

2016-05-21 Thread Stephen J. Turnbull
Sven R. Kunze writes: > Type[A, B] reminds me of isinstance(obj, (A, B)). Sure, but Guido already invoked EIBTI. For one (obscure) alternative, Type[A, B] reminded me of Fun(A,B) (the functors from category A to category B), and in Python I would tend to map that to a function type (taking argu