summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-07-26 06:37:46 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-07-26 06:37:46 (GMT)
commit04f648cb90f0750d007163f1d92da433cdbc9328 (patch)
tree5b90da430f8ccc7401473b82c8fd639d49eaffc6 /Doc/whatsnew/3.3.rst
parent8188f585b2c1d21c1b680181f38b45c4234c6865 (diff)
downloadcpython-04f648cb90f0750d007163f1d92da433cdbc9328.zip
cpython-04f648cb90f0750d007163f1d92da433cdbc9328.tar.gz
cpython-04f648cb90f0750d007163f1d92da433cdbc9328.tar.bz2
#12547: Fix example in nntplib doc. Patch by July Tikhonov.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r--Doc/whatsnew/3.3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 051d165..677f35c 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`)