From 04f648cb90f0750d007163f1d92da433cdbc9328 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 26 Jul 2011 09:37:46 +0300 Subject: [PATCH] #12547: Fix example in nntplib doc. Patch by July Tikhonov. --- Doc/library/nntplib.rst | 4 ++-- Doc/whatsnew/3.3.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/nntplib.rst b/Doc/library/nntplib.rst index 19b8cab25af..01294e821dc 100644 --- a/Doc/library/nntplib.rst +++ b/Doc/library/nntplib.rst @@ -75,10 +75,10 @@ The module itself defines the following classes: connection when done. Here is a sample on how using it: >>> from nntplib import NNTP - >>> with nntplib.NNTP('news.gmane.org') as n: + >>> with NNTP('news.gmane.org') as n: ... n.group('gmane.comp.python.committers') ... - ('211 1454 1 1454 gmane.comp.python.committers', '1454', '1', '1454', 'gmane.comp.python.committers') + ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers') >>> diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 051d165e416..677f35cde46 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -128,7 +128,7 @@ connection when done:: >>> with NNTP('news.gmane.org') as n: ... n.group('gmane.comp.python.committers') ... - ('211 1754 1 1754 gmane.comp.python.committers', 1754, 1, 1754, 'gmane.comp.python.committers') + ('211 1755 1 1755 gmane.comp.python.committers', 1755, 1, 1755, 'gmane.comp.python.committers') >>> (Contributed by Giampaolo RodolĂ  in :issue:`9795`)