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 ztane
Recipients eric.smith, gvanrossum, serhiy.storchaka, ztane
Date 2016-05-05.18:44:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462473882.52.0.27650880016.issue26906@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce the bug in 3.5.0+ Ubuntu with list iterator, if I execute python with -S:

    % python3.5 -S
    Python 3.5.0+ (default, Oct 11 2015, 09:05:38) 
    [GCC 5.2.1 20151010] on linux
    >>> format(iter([]))
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: Type list_iterator doesn't define __format__

Thus here it depends on the stuff that site does or doesn't do. Iterating over a list iterator does *not* trigger the initialization. Printing it doesn't help either, or anything else that does not touch the non-magic attributes. I am not even sure what the site.py and such are doing to the list iterator class to trigger the initialization.
History
Date User Action Args
2016-05-05 18:44:42ztanesetrecipients: + ztane, gvanrossum, eric.smith, serhiy.storchaka
2016-05-05 18:44:42ztanesetmessageid: <1462473882.52.0.27650880016.issue26906@psf.upfronthosting.co.za>
2016-05-05 18:44:42ztanelinkissue26906 messages
2016-05-05 18:44:42ztanecreate