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 july
Recipients docs@python, july
Date 2011-07-13.08:13:30
SpamBayes Score 0.0040341425
Marked as misclassified No
Message-id <1310544811.28.0.517615627121.issue12547@psf.upfronthosting.co.za>
In-reply-to
Content
>>> from nntplib import NNTP
>>> with nntplib.NNTP('news.gmane.org') as n:

will not work. It should be

>>> import nntplib
>>> with nntplib.NNTP('news.gmane.org') as n:

or

>>> from nntplib import NNTP
>>> with NNTP('news.gmane.org') as n:
History
Date User Action Args
2011-07-13 08:13:31julysetrecipients: + july, docs@python
2011-07-13 08:13:31julysetmessageid: <1310544811.28.0.517615627121.issue12547@psf.upfronthosting.co.za>
2011-07-13 08:13:30julylinkissue12547 messages
2011-07-13 08:13:30julycreate