This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author veky
Recipients docs@python, gone, r.david.murray, steven.daprano, veky
Date 2017-08-26.19:06:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503774385.45.0.810022627128.issue31283@psf.upfronthosting.co.za>
In-reply-to
Content
> On the other hand, are there any examples *other* than class and except where this distinction matters?

Of course. For example, "for" semantics mentions StopIteration. Of course it doesn't mean "whatever builtins.StopIteration currently refers to".

[And in a lot of places it would be possible to say that some builtin is implicit in the statement itself: e.g.

    while t:   is equivalent to   while bool(t):
    for a in b:     is equivalent to    for a in iter(b):

- of course, the docs _don't_ currently say so, so maybe this occurance too should just be deleted. But I still think there are lots of places where docs refer to builtins directly.]
History
Date User Action Args
2017-08-26 19:06:25vekysetrecipients: + veky, steven.daprano, r.david.murray, docs@python, gone
2017-08-26 19:06:25vekysetmessageid: <1503774385.45.0.810022627128.issue31283@psf.upfronthosting.co.za>
2017-08-26 19:06:25vekylinkissue31283 messages
2017-08-26 19:06:25vekycreate