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 marduk
Recipients ajaksu2, bbrazil, facundobatista, flox, jhylton, jwilk, marduk, orsenthil, pl
Date 2011-04-20.07:54:24
SpamBayes Score 1.2559082e-05
Marked as misclassified No
Message-id <1303286064.73.0.0388391633092.issue4608@psf.upfronthosting.co.za>
In-reply-to
Content
This issue appears to persist when the protocol used is FTP:


root@tp-db $ cat test.py
from urllib.request import urlopen
for line in urlopen('ftp://gentoo.osuosl.org/pub/gentoo/releases/'):
        print(line)
        break

root@tp-db $ python3.2 test.py
Traceback (most recent call last):
  File "test.py", line 2, in <module>
    for line in urlopen('ftp://gentoo.osuosl.org/pub/gentoo/releases/'):
TypeError: 'addinfourl' object is not iterable
History
Date User Action Args
2011-04-20 07:54:24marduksetrecipients: + marduk, jhylton, facundobatista, orsenthil, ajaksu2, jwilk, pl, flox, bbrazil
2011-04-20 07:54:24marduksetmessageid: <1303286064.73.0.0388391633092.issue4608@psf.upfronthosting.co.za>
2011-04-20 07:54:24marduklinkissue4608 messages
2011-04-20 07:54:24mardukcreate