[issue12547] whatsnew/3.3: error in example about nntplib

2011-07-25 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks again for the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue12547] whatsnew/3.3: error in example about nntplib

2011-07-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 95c34bce986c by Ezio Melotti in branch 'default': #12547: Fix example in nntplib doc. Patch by July Tikhonov. http://hg.python.org/cpython/rev/95c34bce986c -- ___ Python tracker

[issue12547] whatsnew/3.3: error in example about nntplib

2011-07-25 Thread July Tikhonov
July Tikhonov added the comment: The very same example (with the same error) can be found in Doc/library/nntplib.rst -- resolution: fixed -> status: closed -> open Added file: http://bugs.python.org/file22758/library.nntplib.rst.diff ___ Python trac

[issue12547] whatsnew/3.3: error in example about nntplib

2011-07-13 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue12547] whatsnew/3.3: error in example about nntplib

2011-07-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset e0cd35660ae9 by Ezio Melotti in branch 'default': #12547: Fix import and output in nntplib example. Initial patch by July Tikhonov. http://hg.python.org/cpython/rev/e0cd35660ae9 -- nosy: +python-dev ___

[issue12547] whatsnew/3.3: error in example about nntplib

2011-07-13 Thread July Tikhonov
New submission from July Tikhonov : >>> 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: -- assigne