From 7131f84400d85d35d0323c262cc0926bef5a18cf Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 9 Feb 2007 20:13:25 +0000 Subject: Fix a bunch of doctests with the -d option of refactor.py. We still have 27 failing tests (down from 39). --- Lib/nntplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/nntplib.py') diff --git a/Lib/nntplib.py b/Lib/nntplib.py index 3f933f9d22..320653fdf4 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -5,7 +5,7 @@ Example: >>> from nntplib import NNTP >>> s = NNTP('news') >>> resp, count, first, last, name = s.group('comp.lang.python') ->>> print 'Group', name, 'has', count, 'articles, range', first, 'to', last +>>> print('Group', name, 'has', count, 'articles, range', first, 'to', last) Group comp.lang.python has 51 articles, range 5770 to 5821 >>> resp, subs = s.xhdr('subject', first + '-' + last) >>> resp = s.quit() -- cgit v1.2.1