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 serhiy.storchaka
Recipients eric.smith, gvanrossum, serhiy.storchaka, terry.reedy, ztane
Date 2016-10-07.15:04:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475852683.96.0.730234637614.issue26906@psf.upfronthosting.co.za>
In-reply-to
Content
Yet one demonstration of this bug:

$ ./python -IS
>>> import operator
>>> operator.length_hint(iter("abc"))
0
>>> import collections.abc
>>> operator.length_hint(iter("abc"))
3
History
Date User Action Args
2016-10-07 15:04:44serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, terry.reedy, eric.smith, ztane
2016-10-07 15:04:43serhiy.storchakasetmessageid: <1475852683.96.0.730234637614.issue26906@psf.upfronthosting.co.za>
2016-10-07 15:04:43serhiy.storchakalinkissue26906 messages
2016-10-07 15:04:43serhiy.storchakacreate